diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index f094bc4a..e2a9b4d2 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -112,20 +112,21 @@ ckeywhitelist = list("cherostavik") //if this works then ckey has to be all lowercase. +//Second change maybe it has to do with underscore's (_) as well. Also fuck you it doesn't want to appear in suit/uniform it's going in backpack /datum/gear/enzo_leonplushie name = "Enzo Leon Plushie" category = SLOT_IN_BACKPACK path = /obj/item/toy/plush/mammal/enzo_leon - ckeywhitelist = list("enzo_leon") + ckeywhitelist = list("enzoleon") /datum/gear/enzo_leonshirt name = "Altevain Standard-Issue Uniform" - category = SLOT_W_UNIFORM + category = SLOT_IN_BACKPACK path = /obj/item/clothing/under/enzoshirt - ckeywhitelist = list("enzo_leon") + ckeywhitelist = list("enzoleon") /datum/gear/enzo_leonjacket name = "Altevain Colony-Ship Command Jacket" - category = SLOT_WEAR_SUIT + category = SLOT_IN_BACKPACK path = /obj/item/clothing/suit/toggle/enzojacket - ckeywhitelist = list("enzo_leon") + ckeywhitelist = list("enzoleon")