From de51d4e5b718a310770917ea39183355ae59bbeb Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Thu, 15 May 2014 15:09:48 +0930 Subject: [PATCH] Fixing a bug with leap() and gut() --- code/modules/mob/living/carbon/human/human.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index a95b44460d7..6c7db1f381f 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1442,7 +1442,7 @@ if(last_special > world.time) return - if(stat) + if(stat || paralysis || stunned || weakened || lying) src << "You cannot leap in your current state." return @@ -1503,7 +1503,7 @@ if(last_special > world.time) return - if(stat) + if(stat || paralysis || stunned || weakened || lying) src << "\red You cannot do that in your current state." return