diff --git a/code/modules/emotes/definitions/human.dm b/code/modules/emotes/definitions/human.dm index 182e8df51a..0b4efc811a 100644 --- a/code/modules/emotes/definitions/human.dm +++ b/code/modules/emotes/definitions/human.dm @@ -1,5 +1,11 @@ +/decl/emote/human + key = "vomit" + /decl/emote/human/check_user(var/mob/living/carbon/human/user) - return istype(user) + return (istype(user))//VOREStation Edit - What does a mouth have to do with wagging?? && user.check_has_mouth() && !user.isSynthetic()) + +/decl/emote/human/do_emote(var/mob/living/carbon/human/user) + user.vomit() /decl/emote/human/deathgasp key = "deathgasp"