Skip to content

Commit 7e2c3cd

Browse files
Quick fix of outfit permissions. Whoops in master branch but we ball. (#6692)
## About The Pull Request Whoopie, Forcepush to master Fixes a minor oversight in outfits ## Why It's Good For The Game Fixes a minor oversight in outfits ## Changelog Fixes a minor oversight in outfits :cl: fix: Quick fix of admin outfit permissions <!-- Both :cl:'s are required for the changelog to work! You can put your name to the right of the first :cl: if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. -->
1 parent 0ec75e0 commit 7e2c3cd

File tree

1 file changed

+7
-7
lines changed
  • monkestation/code/modules/loadouts/items

1 file changed

+7
-7
lines changed

monkestation/code/modules/loadouts/items/admin.dm

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,44 +33,44 @@
3333
item_path = /obj/item/clothing/head/hats/warden/drill/centcom_admiral
3434
restricted_roles = list(JOB_NANOTRASEN_REPRESENTATIVE)
3535
requires_purchase = FALSE
36-
ckeywhitelist = list("Plejek", "abraxis12gaming")
36+
admin_only = TRUE
3737

3838
/datum/loadout_item/suit/cent_admiral_jacket //
3939
name = "Centcom Admiral's Coat"
4040
item_path = /obj/item/clothing/suit/armor/centcom_admiral
4141
restricted_roles = list(JOB_NANOTRASEN_REPRESENTATIVE)
4242
requires_purchase = FALSE
43-
ckeywhitelist = list("Plejek", "abraxis12gaming")
43+
admin_only = TRUE
4444

4545
/datum/loadout_item/under/miscellaneous/cent_admiral //
4646
name = "Centcom Admiral's Uniform"
4747
item_path = /obj/item/clothing/under/rank/centcom/admiral
4848
restricted_roles = list(JOB_NANOTRASEN_REPRESENTATIVE)
4949
requires_purchase = FALSE
50-
ckeywhitelist = list("Plejek", "abraxis12gaming")
50+
admin_only = TRUE
5151

5252
/datum/loadout_item/gloves/cent_admiral //
5353
name = "Centcom Admiral's Gloves"
5454
item_path = /obj/item/clothing/gloves/admiral
5555
requires_purchase = FALSE
56-
ckeywhitelist = list("Plejek", "abraxis12gaming")
56+
admin_only = TRUE
5757

5858
/datum/loadout_item/shoes/cent_admiral //
5959
name = "Centcom Admiral's Shoes"
6060
item_path = /obj/item/clothing/shoes/admiral
6161
requires_purchase = FALSE
62-
ckeywhitelist = list("Plejek", "abraxis12gaming")
62+
admin_only = TRUE
6363

6464
// Sprungle's loadout
6565

6666
/datum/loadout_item/mask/sprungle_mask
6767
name = "Porcelain Facemask"
6868
requires_purchase = FALSE
69-
ckeywhitelist = list("speebusdageebus", "plejek")
69+
admin_only = TRUE
7070
item_path = /obj/item/clothing/mask/sprungle
7171

7272
/datum/loadout_item/mask/sprungle_golden_mask
7373
name = "Golden Facemask"
7474
requires_purchase = FALSE
75-
ckeywhitelist = list("speebusdageebus", "plejek")
75+
admin_only = TRUE
7676
item_path = /obj/item/clothing/mask/sprungle/personal

0 commit comments

Comments
 (0)