From 6a524b865b620c22f6c7b38d51eaabfeba3c34fb Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 22 May 2021 16:12:05 -0400 Subject: [PATCH] Compile Fix --- code/modules/emotes/definitions/helpers_vr.dm | 4 ++-- .../mob/living/carbon/human/species/station/station.dm | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/emotes/definitions/helpers_vr.dm b/code/modules/emotes/definitions/helpers_vr.dm index 6dc3a79bddc..c3eccf385ae 100644 --- a/code/modules/emotes/definitions/helpers_vr.dm +++ b/code/modules/emotes/definitions/helpers_vr.dm @@ -3,7 +3,7 @@ key = "vwag" emote_message_3p = "" -/decl/emote/helper/vwag/check_user(mob/living/carbon/human/user) +/decl/emote/helper/vwag/mob_can_use(mob/living/carbon/human/user) if(!istype(user) || (!user.tail_style || !user.tail_style.ani_state)) return FALSE return ..() @@ -20,7 +20,7 @@ key = "vflap" emote_message_3p = "" -/decl/emote/helper/vflap/check_user(mob/living/carbon/human/user) +/decl/emote/helper/vflap/mob_can_use(mob/living/carbon/human/user) if(!istype(user) || (!user.wing_style || !user.wing_style.ani_state)) return FALSE return ..() diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm index 21e19f68d43..75ddf45a3c6 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -261,6 +261,11 @@ ) default_emotes = list( + //VOREStation Add + /decl/emote/audible/gnarl, + /decl/emote/audible/purr, + /decl/emote/audible/purrlong, + //VOREStation Add End /decl/emote/human/swish, /decl/emote/human/wag, /decl/emote/human/sway,