From dd855e828873f7e8d85f7154d511d8a216bd091f Mon Sep 17 00:00:00 2001 From: "ryantennessee@yahoo.com" Date: Sun, 12 Feb 2012 23:40:29 +0000 Subject: [PATCH] Changed alien disarm intent on humans from weaken(rand(15,20)) to weaken(rand(10,15)) . git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3119 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/carbon/human/human_attackalien.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_attackalien.dm b/code/modules/mob/living/carbon/human/human_attackalien.dm index 1b8e5a1ef1..09cb279b54 100644 --- a/code/modules/mob/living/carbon/human/human_attackalien.dm +++ b/code/modules/mob/living/carbon/human/human_attackalien.dm @@ -54,7 +54,7 @@ var/randn = rand(1, 100) if (randn <= 90) playsound(loc, 'pierce.ogg', 25, 1, -1) - Weaken(rand(15,20)) + Weaken(rand(10,15)) for(var/mob/O in viewers(src, null)) if ((O.client && !( O.blinded ))) O.show_message(text("\red [] has tackled down []!", M, src), 1)