diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 47e2fe427f9..2a0021ba7f6 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -533,12 +533,18 @@ m_type = 1 else if (!muzzled) - message = "[src] screams!" - m_type = 2 - if (prob(5)) - playsound(src.loc, 'sound/voice/WilhelmScream.ogg', 100, 1, 10) + if (!(species.name == "Vox" || species.name == "Vox Armalis")) + message = "[src] screams!" + m_type = 2 + if (prob(5)) + playsound(src.loc, 'sound/voice/WilhelmScream.ogg', 100, 1, 10) + else + playsound(src.loc, 'sound/voice/scream2.ogg', 100, 1, 10) else - playsound(src.loc, 'sound/voice/scream2.ogg', 100, 1, 10) + message = "[src] shrieks!" + m_type = 2 + playsound(src.loc, 'sound/voice/shriek1.ogg', 100, 1, 10) + else message = "[src] makes a very loud noise." m_type = 2