diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index 416fd911777..52636efb896 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -206,9 +206,13 @@
if("hiss", "hisses")
var/M = handle_emote_param(param)
- message = "[src] hisses[M ? " at [M]" : ""]."
- playsound(loc, 'sound/effects/unathihiss.ogg', 50, 0) //Credit to Jamius (freesound.org) for the sound.
- m_type = 2
+ if(!muzzled)
+ message = "[src] hisses[M ? " at [M]" : ""]."
+ playsound(loc, 'sound/effects/unathihiss.ogg', 50, 0) //Credit to Jamius (freesound.org) for the sound.
+ m_type = 2
+ else
+ message = "[src] makes a weak hissing noise."
+ m_type = 2
if("quill", "quills")
var/M = handle_emote_param(param)