From 13c391e6728bbba101d5e4c653aab1987815d1d7 Mon Sep 17 00:00:00 2001 From: Ren Erthilo Date: Sun, 22 Apr 2012 22:30:48 +0100 Subject: [PATCH] TG: Changed alien disarm intent on humans from weaken(rand(15,20)) to weaken(rand(10,15)) . Revision: r3119 Author: ryantenn...@yahoo.com --- 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 0f64a904681..1f82eb28591 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)