From 63aa82b73a92f291439ad8999615756e12fcafdb Mon Sep 17 00:00:00 2001 From: "giacomand@gmail.com" Date: Tue, 28 Aug 2012 13:32:17 +0000 Subject: [PATCH] -The weaken in the choke code wasn't enough and people were able to escape from being choked. I've upped it and tested it, you should not be able to escape from a lethal choke on your own any more. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4574 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/mob_grab.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index c7dee0e2c19..c3d8df4a566 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -112,8 +112,8 @@ killing = 0 hud1.icon_state = "disarm/kill" return - affecting.Weaken(3) - affecting.Stun(3) // It will hamper your voice, being choked and all. + affecting.Weaken(5) // Should keep you down unless you get help. + affecting.Stun(5) // It will hamper your voice, being choked and all. affecting.losebreath = min(affecting.losebreath + 2, 3) return