From b1bd28be3c5af66063f01d09ec293626a895cd70 Mon Sep 17 00:00:00 2001 From: Putnam Date: Mon, 28 Dec 2020 18:57:48 -0800 Subject: [PATCH] Makes gear harnesses unusable when unusable --- code/modules/clothing/under/miscellaneous.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index a9dd19e925..6a4672ea12 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -172,6 +172,8 @@ body_parts_covered = CHEST|GROIN /obj/item/clothing/under/misc/gear_harness/rolldown() + if(!can_use(usr)) + return if(!body_parts_covered) to_chat(usr, "Your gear harness is now covering your chest and groin.") body_parts_covered = CHEST|GROIN