From 406549dd6b38379676f50970d2d6df75efd5c5ae Mon Sep 17 00:00:00 2001 From: Chemlight Date: Sat, 13 Feb 2021 21:10:51 -0800 Subject: [PATCH] A quick coding test Seeing if ckey sensitive whitelisting only uses lowercase, or if they're angry with uppercase. --- modular_citadel/code/modules/client/loadout/__donator.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index c94b241b..f094bc4a 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -111,20 +111,21 @@ path = /obj/item/clothing/mask/keaton ckeywhitelist = list("cherostavik") +//if this works then ckey has to be all lowercase. /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("enzo_leon") /datum/gear/enzo_leonshirt name = "Altevain Standard-Issue Uniform" category = SLOT_W_UNIFORM path = /obj/item/clothing/under/enzoshirt - ckeywhitelist = list("Enzo_Leon") + ckeywhitelist = list("enzo_leon") /datum/gear/enzo_leonjacket name = "Altevain Colony-Ship Command Jacket" category = SLOT_WEAR_SUIT path = /obj/item/clothing/suit/toggle/enzojacket - ckeywhitelist = list("Enzo_Leon") + ckeywhitelist = list("enzo_leon")