From 7483b9fcb2b5b9bab435baa10a0bc2249f12504b Mon Sep 17 00:00:00 2001 From: GinjaNinja32 Date: Thu, 9 Apr 2015 13:58:10 +0100 Subject: [PATCH] Fixes hardsuits completely breaking all the time --- code/modules/clothing/spacesuits/rig/rig.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 932986938d1..eff23b686c1 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -631,8 +631,9 @@ use_obj.loc = src else if (deploy_mode != ONLY_RETRACT) - if(check_slot && check_slot != use_obj) - H << "You are unable to deploy \the [piece] as \the [check_slot] [check_slot.gender == PLURAL ? "are" : "is"] in the way." + if(check_slot) + if(check_slot != use_obj) + H << "You are unable to deploy \the [piece] as \the [check_slot] [check_slot.gender == PLURAL ? "are" : "is"] in the way." return else use_obj.loc = H