From 06b30d3e735415ee4e1261977ab300d589ef995a Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 1 Oct 2017 22:52:58 -0500 Subject: [PATCH] [MIRROR] Fixes krav maga working while stunned closes #3073 --- code/_onclick/click.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 2bc6e144dd..aa43592c64 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -327,7 +327,7 @@ ML.pulled(src) /mob/living/carbon/human/CtrlClick(mob/user) - if(ishuman(user) && Adjacent(user)) + if(ishuman(user) && Adjacent(user) && !user.incapacitated()) if(world.time < user.next_move) return FALSE var/mob/living/carbon/human/H = user