From 6897883c3346486afddcfec151643162c10e884c Mon Sep 17 00:00:00 2001
From: SabreML <57483089+SabreML@users.noreply.github.com>
Date: Wed, 11 Aug 2021 03:51:46 +0100
Subject: [PATCH] Mime growling
---
code/modules/mob/living/carbon/human/emote.dm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index a8a4133310d..348aab228ae 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -170,9 +170,13 @@
if("growl", "growls")
var/M = handle_emote_param(param)
- message = "[src] growls[M ? " at [M]" : ""]."
- playsound(loc, "growls", 80, 1, frequency = get_age_pitch())
- m_type = 2
+ if(miming)
+ message = "[src] acts out a growl[M ? " at [M]" : ""]!"
+ m_type = 1
+ else
+ message = "[src] growls[M ? " at [M]" : ""]!"
+ playsound(loc, "growls", 80, 1, frequency = get_age_pitch())
+ m_type = 2
if("ping", "pings")
var/M = handle_emote_param(param)