From 4981f3409fcdf1ad08370143064ddc60d5416ea3 Mon Sep 17 00:00:00 2001 From: Hubblenaut Date: Wed, 2 Jul 2014 22:43:17 +0200 Subject: [PATCH] Fixes wrong person getting movement penalty --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 2b1299b636..7f468f5ebb 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -35,7 +35,7 @@ else if(E.status & ORGAN_BROKEN) tally += 1.5 - if(pulledby && istype(pulledby, /obj/structure/stool/bed/chair/wheelchair)) + if(buckled && istype(buckled, /obj/structure/stool/bed/chair/wheelchair)) for(var/organ_name in list("l_hand","r_hand","l_arm","r_arm")) var/datum/organ/external/E = get_organ(organ_name) if(!E || (E.status & ORGAN_DESTROYED))