Fix meow emote for cat tongues (#3470)

## About The Pull Request

Fixes the meow emote to use the correct emote if you have a cat tongue

## Why It's Good For The Game

MEOW.

## Changelog

🆑 LT3
fix: Mobs with cat tongue get their alternate meow sound back
/🆑
This commit is contained in:
LT3
2025-04-09 16:54:09 -07:00
committed by GitHub
parent 204ea57363
commit e5b57bc08c
2 changed files with 3 additions and 2 deletions

View File

@@ -77,6 +77,7 @@
if(user.put_in_hands(N))
to_chat(user, span_notice("You make a circle with your hand."))
/* BUBBER EDIT REMOVE - moved to modular_skyrat/modules/emotes/code/emotes.dm
/datum/emote/living/carbon/meow
key = "meow"
key_third_person = "meows"
@@ -91,7 +92,6 @@
return FALSE
return ..()
/* BUBBER EDIT REMOVE - moved to modular_skyrat/modules/emotes/code/emotes.dm
/datum/emote/living/carbon/purr
key = "purr"
key_third_person = "purrs"

View File

@@ -177,7 +177,8 @@
key = "meow"
key_third_person = "meows"
message = "meows!"
emote_type = EMOTE_AUDIBLE
message_mime = "meows silently."
emote_type = EMOTE_VISIBLE | EMOTE_AUDIBLE
vary = TRUE
sound = 'modular_skyrat/modules/emotes/sound/emotes/meow.ogg'