diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 6dc208ed6d..13c8196a38 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -23,10 +23,10 @@ if ("mlem") message = "mlems [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] tongue up over [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] nose. Mlem." m_type = 1 - if ("awoo") + if ("howl") // YW edit begins m_type = 2 - message = "lets out an awoo." - playsound(loc, 'sound/voice/awoo.ogg', 50, 1, -1) + message = "lets out an howl." + playsound(loc, 'sound/voice/howl.ogg', 50, 1, -1) // YW edit ends if ("nya") message = "lets out a nya." m_type = 2 @@ -80,7 +80,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, howl, nya, peep, chirp, weh, merp, bark, hiss, squeak, nsay, nme, flip") if (message) custom_emote(m_type,message) diff --git a/sound/voice/awoo.ogg b/sound/voice/awoo.ogg deleted file mode 100644 index 1cbdbc01df..0000000000 Binary files a/sound/voice/awoo.ogg and /dev/null differ 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