From e3cec505836c0699a90019d8d467781dd074e86a Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 27 Dec 2014 08:11:18 +1030 Subject: [PATCH] Fixed incorrect role check on leap(). --- code/modules/mob/living/carbon/human/human_powers.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_powers.dm b/code/modules/mob/living/carbon/human/human_powers.dm index 30ac38248f4..9996efc8b69 100644 --- a/code/modules/mob/living/carbon/human/human_powers.dm +++ b/code/modules/mob/living/carbon/human/human_powers.dm @@ -98,14 +98,14 @@ T.Weaken(5) //Only official cool kids get the grab and no self-prone. - if(src.mind && src.mind.special_role) + if(src.mind && !src.mind.special_role) src.Weaken(5) return var/use_hand = "left" if(l_hand) if(r_hand) - src << "\red You need to have one hand free to grab someone." + src << "You need to have one hand free to grab someone." return else use_hand = "right"