From dd926fc5d4e2baabe88ed3ae1c2d7ed12df83047 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 9 Dec 2015 18:00:55 -0600 Subject: [PATCH] Space suits not immune --- code/modules/mob/living/carbon/human/species.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index be6eb73a6a9..db2eaea1317 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -862,9 +862,9 @@ . += H.shoes.slowdown if(H.back) . += H.back.slowdown - if(H.l_hand && !istype(H.l_hand, /obj/item/clothing)) + if(H.l_hand) . += H.l_hand.slowdown - if(H.r_hand && !istype(H.r_hand, /obj/item/clothing)) + if(H.r_hand) . += H.r_hand.slowdown if((H.disabilities & FAT))