From fc58a3d31c54c83fc2d039088363b4ee654fa60d Mon Sep 17 00:00:00 2001 From: oranges Date: Sun, 13 Dec 2015 21:53:30 +1300 Subject: [PATCH] Damage standardisation for hulk punch --- code/modules/mob/living/carbon/alien/humanoid/humanoid.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/humanoid.dm b/code/modules/mob/living/carbon/alien/humanoid/humanoid.dm index cca0f0cdbab..6ed3532f9fd 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/humanoid.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/humanoid.dm @@ -32,7 +32,7 @@ /mob/living/carbon/alien/humanoid/attack_hulk(mob/living/carbon/human/user) if(user.a_intent == "harm") ..(user, 1) - adjustBruteLoss(14 + rand(1,9)) + adjustBruteLoss(15) var/hitverb = "punched" if(mob_size < MOB_SIZE_LARGE) Paralyse(1) @@ -157,4 +157,4 @@ proc/alien_type_present(var/alienpath) if(!A.key || A.stat == DEAD) //Only living aliens with a ckey are valid. continue return 1 - return 0 \ No newline at end of file + return 0