From 866db87ec0687d7fff502e8a2bc7bac97a03316d Mon Sep 17 00:00:00 2001 From: Bone White Date: Sun, 17 Aug 2014 00:43:54 +0100 Subject: [PATCH] Removed two debug comments --- code/modules/mob/living/carbon/human/human_attackhand.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index dbba84f5559..8d92ff519f8 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -181,14 +181,12 @@ //check for an aggressive grab for (var/obj/item/weapon/grab/G in src.grabbed_by) if (G.assailant == M && G.state >= GRAB_AGGRESSIVE) - world << "aggressive grab" randn -= 30 // this value is the % chance of knockdown if you disarm someone whilst you have an aggressive grab. else //if target is handcuffed, always push them over randn = 0 if (randn <= 0) - world << "push over success" apply_effect(4, WEAKEN, run_armor_check(affecting, "melee")) // first var here is the length of the knockdown playsound(loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) visible_message("\red [M] has floored [src]!")