diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 6dc208ed6d..e5db4fe87f 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -27,6 +27,10 @@ m_type = 2 message = "lets out an awoo." playsound(loc, 'sound/voice/awoo.ogg', 50, 1, -1) + if ("howl") // YW add begins + m_type = 2 + message = "lets out a howl." + playsound(loc, 'sound/voice/howl.ogg', 50, 1, -1) // YW add ends if ("nya") message = "lets out a nya." m_type = 2 @@ -80,7 +84,7 @@ message = "does a flip!" m_type = 1 if ("vhelp") //Help for Virgo-specific emotes. - to_chat(src, "vwag, vflap, mlem, awoo, nya, peep, chirp, weh, merp, bark, hiss, squeak, nsay, nme, flip") + to_chat(src, "vwag, vflap, mlem, awoo, howl, nya, peep, chirp, weh, merp, bark, hiss, squeak, nsay, nme, flip") if (message) custom_emote(m_type,message) diff --git a/sound/voice/howl.ogg b/sound/voice/howl.ogg new file mode 100644 index 0000000000..778fd6b248 Binary files /dev/null and b/sound/voice/howl.ogg differ