From 9864fe275d100d83356f66e6485df708bfd507dd Mon Sep 17 00:00:00 2001 From: Ghommie Date: Sat, 25 May 2019 08:22:27 +0200 Subject: [PATCH] I'm tired of my grabs on horizontal spacemen breaking off because of cit crawling. --- code/modules/mob/living/living.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index b9b6424092..1abc221ef2 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -102,7 +102,7 @@ return 1 //CIT CHANGES START HERE - makes it so resting stops you from moving through standing folks without a short delay - if(resting && !L.resting) + if(resting && !L.resting && !pulledby) if(attemptingcrawl) return TRUE if(getStaminaLoss() >= STAMINA_SOFTCRIT)