From a42b41005ebc2726be31befc957a6568f4e24f00 Mon Sep 17 00:00:00 2001 From: Spacemanspark Date: Thu, 25 Feb 2016 08:12:02 -0600 Subject: [PATCH] Fixes *yes and *no emotes not displaying a message in the chat. Whoops. --- code/modules/mob/living/carbon/human/emote.dm | 4 ++++ code/modules/mob/living/silicon/emote.dm | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 90660bb6039..f35bda25cd4 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -139,6 +139,8 @@ param = null if (param) + message = "[src] emits an affirmative blip at [param]." + else message = "[src] emits an affirmative blip." playsound(src.loc, 'sound/machines/synth_yes.ogg', 50, 0) m_type = 1 @@ -154,6 +156,8 @@ param = null if (param) + message = "[src] emits a negative blip at [param]." + else message = "[src] emits a negative blip." playsound(src.loc, 'sound/machines/synth_no.ogg', 50, 0) m_type = 1 diff --git a/code/modules/mob/living/silicon/emote.dm b/code/modules/mob/living/silicon/emote.dm index 26d6520c586..dace3f40060 100644 --- a/code/modules/mob/living/silicon/emote.dm +++ b/code/modules/mob/living/silicon/emote.dm @@ -86,6 +86,8 @@ param = null if (param) + message = "[src] emits an affirmative blip at [param]." + else message = "[src] emits an affirmative blip." playsound(src.loc, 'sound/machines/synth_yes.ogg', 50, 0) m_type = 1 @@ -101,6 +103,8 @@ param = null if (param) + message = "[src] emits a negative blip at [param]." + else message = "[src] emits a negative blip." playsound(src.loc, 'sound/machines/synth_no.ogg', 50, 0) m_type = 1