From bd24560cfbd7bd6428820f577ff7d210921bf9ce Mon Sep 17 00:00:00 2001 From: AnturK Date: Sat, 9 Jan 2016 00:21:32 +0100 Subject: [PATCH] Fixes Hulk punches missing message. --- code/modules/mob/living/carbon/human/human_attackhand.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index e3c6d588a28..d4f4e91e080 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -1,7 +1,12 @@ /mob/living/carbon/human/attack_hulk(mob/living/carbon/human/user) if(user.a_intent == "harm") ..(user, 1) + playsound(loc, user.dna.species.attack_sound, 25, 1, -1) + var/hulk_verb = pick("smash","pummel") + visible_message("[user] has [hulk_verb]ed [src]!", \ + "[user] has [hulk_verb]ed [src]!") adjustBruteLoss(15) + return 1 /mob/living/carbon/human/attack_hand(mob/living/carbon/human/M) if(..()) //to allow surgery to return properly.