diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 23e88cdf089..8b6bdeb599f 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -91,6 +91,16 @@ message = "squishes." m_type = 1 + if("chirp") + /* VOREStation Removal Start - Eh. People can chirp maybe. + if ((species.bump_flag != SLIME) && (species.name != SPECIES_DIONA)) + to_chat(src, "You are not a diona or slime!") + return + */ //VOREStation Removal End + playsound(src, 'sound/misc/nymphchirp.ogg', 50, 0) + message = "chirps." + m_type = 2 + //Skrell-only emotes if("warble") if(species.name != SPECIES_SKRELL)