From 331900eb87abadb4d1e0fbeb7e666d2c08588dc1 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Wed, 21 Mar 2012 19:59:20 +0000 Subject: [PATCH] Fix for the fix for pulling people lying down. --- code/modules/clothing/spacesuits/rig.dm | 2 +- code/modules/mob/living/carbon/human/human.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/rig.dm b/code/modules/clothing/spacesuits/rig.dm index 1430d605dec..1e03786ed87 100644 --- a/code/modules/clothing/spacesuits/rig.dm +++ b/code/modules/clothing/spacesuits/rig.dm @@ -16,7 +16,7 @@ /obj/item/clothing/head/helmet/space/rig/engspace_helmet name = "engineering space helmet" - desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding." + desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding and a visor that can be toggled on and off." icon_state = "engspace_helmet" item_state = "engspace_helmet" see_face = 0.0 diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index a89e3c31c93..c92fa7bd87a 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -204,7 +204,7 @@ if(mutations & mRun) tally = 0 - if(M && M.lying & ismob(pulling)) //Pulling lying down people is slower + if(istype(M) && M.lying) //Pulling lying down people is slower tally += 3 return tally