From 21da7ef6198588111ef043eb05e5cb802929620b Mon Sep 17 00:00:00 2001 From: Putnam Date: Wed, 23 Dec 2020 00:01:59 -0800 Subject: [PATCH] Actually made it adjustable properly. --- code/modules/clothing/under/miscellaneous.dm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 2a5d6974ef..a9dd19e925 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -171,12 +171,17 @@ can_adjust = TRUE body_parts_covered = CHEST|GROIN -/obj/item/clothing/under/misc/gear_harness/toggle_jumpsuit_adjust() - adjusted = !adjusted - if(adjusted) - body_parts_covered = NONE - else +/obj/item/clothing/under/misc/gear_harness/rolldown() + if(!body_parts_covered) + to_chat(usr, "Your gear harness is now covering your chest and groin.") body_parts_covered = CHEST|GROIN + else + to_chat(usr, "Your gear harness is no longer covering anything.") + body_parts_covered = NONE + if(ishuman(usr)) + var/mob/living/carbon/human/H = usr + H.update_inv_w_uniform() + H.update_body() /obj/item/clothing/under/misc/durathread name = "durathread jumpsuit"