From afe8fe6b104bc35cbb0b9854a9a7ec3b19b3b22c Mon Sep 17 00:00:00 2001 From: Jeff Watchson Date: Thu, 1 Feb 2024 20:31:28 +0200 Subject: [PATCH] Final fix --- code/modules/gear_presets/wy.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/gear_presets/wy.dm b/code/modules/gear_presets/wy.dm index 7017dd6f6f3b..e844e34dbcc2 100644 --- a/code/modules/gear_presets/wy.dm +++ b/code/modules/gear_presets/wy.dm @@ -70,8 +70,8 @@ new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/pmc(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/blue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/corporate/blue(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/notepad/blue(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) @@ -92,9 +92,9 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/secure/briefcase(new_human), WEAR_R_HAND) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/corporate/black(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/spacecash/c1000/counterfeit(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/spacecash/c1000/counterfeit(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/notepad/black(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) ..()