From 3a7f360fe995bad96ee650db28de98a605a88404 Mon Sep 17 00:00:00 2001 From: Putnam Date: Mon, 28 Dec 2020 19:06:37 -0800 Subject: [PATCH] Made the returns make more sense. --- code/modules/clothing/under/_under.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/clothing/under/_under.dm b/code/modules/clothing/under/_under.dm index 66f9bf15e7..e617d2d57b 100644 --- a/code/modules/clothing/under/_under.dm +++ b/code/modules/clothing/under/_under.dm @@ -244,8 +244,7 @@ /obj/item/clothing/under/proc/rolldown() if(!can_use(usr)) return - toggle_jumpsuit_adjust() - if(ishuman(usr)) + if(toggle_jumpsuit_adjust() && ishuman(usr)) var/mob/living/carbon/human/H = usr H.update_inv_w_uniform() H.update_body() @@ -253,7 +252,7 @@ /obj/item/clothing/under/proc/toggle_jumpsuit_adjust() if(!can_adjust) to_chat(usr, "You cannot wear this suit any differently!") - return + return FALSE adjusted = !adjusted if(adjusted) @@ -271,7 +270,7 @@ if(initial(mutantrace_variation) & USE_TAUR_CLIP_MASK) mutantrace_variation |= USE_TAUR_CLIP_MASK - return adjusted + return TRUE /obj/item/clothing/under/rank dying_key = DYE_REGISTRY_UNDER