From 53e29bcb878f5ebbaa70a9cbad8111045ecacdc2 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 9 Dec 2015 10:25:51 -0600 Subject: [PATCH 1/3] Slowdown from inhand items --- code/modules/mob/living/carbon/human/species.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 98d72daabdd..f3e70ecdf20 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -862,6 +862,10 @@ . += H.shoes.slowdown if(H.back) . += H.back.slowdown + if(H.l_hand && !istype(l_hand, /obj/item/clothing)) + . += H.l_hand.slowdown + if(H.r_hand && !istype(r_hand, /obj/item/clothing)) + . += H.r_hand.slowdown if((H.disabilities & FAT)) . += 1.5 From 8f9791d3c4eb41deddb2006c844fe32dff6fbafd Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 9 Dec 2015 10:33:48 -0600 Subject: [PATCH 2/3] Fixes --- 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 f3e70ecdf20..be6eb73a6a9 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(l_hand, /obj/item/clothing)) + if(H.l_hand && !istype(H.l_hand, /obj/item/clothing)) . += H.l_hand.slowdown - if(H.r_hand && !istype(r_hand, /obj/item/clothing)) + if(H.r_hand && !istype(H.r_hand, /obj/item/clothing)) . += H.r_hand.slowdown if((H.disabilities & FAT)) From dd926fc5d4e2baabe88ed3ae1c2d7ed12df83047 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 9 Dec 2015 18:00:55 -0600 Subject: [PATCH 3/3] 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))