From 46e550d025fa46699edaa07c6cc66bd4d5b45a15 Mon Sep 17 00:00:00 2001 From: Tails2091 Date: Thu, 21 Mar 2019 14:41:35 -0400 Subject: [PATCH] Cat and Mouse choose from emote_hear list --- code/modules/mob/living/simple_animal/friendly/cat.dm | 2 +- code/modules/mob/living/simple_animal/friendly/mouse.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm index be70338664d..bc801b229f0 100644 --- a/code/modules/mob/living/simple_animal/friendly/cat.dm +++ b/code/modules/mob/living/simple_animal/friendly/cat.dm @@ -168,7 +168,7 @@ switch(act) if("meow") - message = "[src] meows!" + message = "[src] [pick(emote_hear)]!" m_type = 2 //audible playsound(src, meow_sound, 50, 0.75) if("hiss") diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index d5d981f5df7..c0c8f4312a5 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -124,7 +124,7 @@ switch(act) if("squeak") - message = "\The [src] squeaks!" + message = "\The [src] [pick(emote_hear)]!" m_type = 2 //audible playsound(src, squeak_sound, 40, 1) if("help")