From a07033fd15ceec1ee2a328c7d3cc20068ae1c396 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Wed, 22 Feb 2017 01:08:58 +0000 Subject: [PATCH] Fixes loadout stuff --- .../preference_setup/loadout/loadout_xeno_vr.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index 874296f897..2c34d13088 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -2,34 +2,34 @@ display_name = "casual wear (Vox)" path = /obj/item/clothing/under/vox/vox_casual sort_category = "Xenowear" - whitelisted = list("Vox") + whitelisted = "Vox" /datum/gear/uniform/voxrobes display_name = "comfy robes (Vox)" path = /obj/item/clothing/under/vox/vox_robes sort_category = "Xenowear" - whitelisted = list("Vox") + whitelisted = "Vox" /datum/gear/accessory/vox display_name = "storage vest (Vox)" path = /obj/item/clothing/accessory/storage/vox sort_category = "Xenowear" - whitelisted = list("Vox") + whitelisted = "Vox" /datum/gear/gloves/vox display_name = "insulated gauntlets (Vox)" path = /obj/item/clothing/gloves/vox sort_category = "Xenowear" - whitelisted = list("Vox") + whitelisted = "Vox" /datum/gear/shoes/vox display_name = "magclaws (Vox)" path = /obj/item/clothing/shoes/magboots/vox sort_category = "Xenowear" - whitelisted = list("Vox") + whitelisted = "Vox" /datum/gear/mask/vox display_name = "alien mask (Vox)" path = /obj/item/clothing/mask/gas/swat/vox sort_category = "Xenowear" - whitelisted = list("Vox") \ No newline at end of file + whitelisted = "Vox" \ No newline at end of file