From e6837eaeb70fbb7dfa2924b8af57dc00991827b3 Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Thu, 30 Dec 2021 00:36:48 -0500 Subject: [PATCH] Ablative Trenchoat HUD Fix (#63671) --- code/modules/clothing/suits/ablativecoat.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/ablativecoat.dm b/code/modules/clothing/suits/ablativecoat.dm index c431c0f811e..fa8349ed3e9 100644 --- a/code/modules/clothing/suits/ablativecoat.dm +++ b/code/modules/clothing/suits/ablativecoat.dm @@ -35,7 +35,7 @@ return TRUE /obj/item/clothing/suit/hooded/ablative/ToggleHood() - if (!hood_up) + if (hood_up) return ..() var/mob/living/carbon/user = loc var/datum/atom_hud/hud = GLOB.huds[DATA_HUD_SECURITY_ADVANCED]