From 58471ba1555ca2d673f5871915998df4f86574cf Mon Sep 17 00:00:00 2001 From: Cael_Aislinn Date: Sun, 15 Sep 2013 07:34:24 +1000 Subject: [PATCH] resolves #1368 Signed-off-by: Cael_Aislinn --- code/modules/mob/living/say.dm | 3 ++- code/modules/mob/living/silicon/say.dm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 1d002c1b77d..3b53d5d549a 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -376,7 +376,8 @@ var/list/department_radio_keys = list( for(var/mob/M in heard_a + heard_b) if(M.client) speech_bubble_recipients.Add(M.client) - flick_overlay(image('icons/mob/talk.dmi', src, "h[bubble_type][say_test(message)]",MOB_LAYER+1), speech_bubble_recipients, 30) + spawn(0) + flick_overlay(image('icons/mob/talk.dmi', src, "h[bubble_type][say_test(message)]",MOB_LAYER+1), speech_bubble_recipients, 30) log_say("[name]/[key] : [message]") diff --git a/code/modules/mob/living/silicon/say.dm b/code/modules/mob/living/silicon/say.dm index e71a3bdf790..81a9c45bfd6 100644 --- a/code/modules/mob/living/silicon/say.dm +++ b/code/modules/mob/living/silicon/say.dm @@ -75,7 +75,8 @@ speech_bubble_recipients.Add(M.client) //speech bubble - flick_overlay(image('icons/mob/talk.dmi', src, "hR[say_test(message)]",MOB_LAYER+1), speech_bubble_recipients, 30) + spawn(0) + flick_overlay(image('icons/mob/talk.dmi', src, "hR[say_test(message)]",MOB_LAYER+1), speech_bubble_recipients, 30) /*Radios "filter out" this conversation channel so we don't need to account for them. This is another way of saying that we won't bother dealing with them.*/