From 978384871706cb471192fdd982b51a8da2cad0c0 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 25 May 2016 19:26:15 -0400 Subject: [PATCH] Don't forget dead people --- code/modules/mob/living/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 73427a63ed..a2355b1820 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -303,7 +303,7 @@ proc/get_radio_key_from_channel(var/channel) if(M && src) //If we still exist, when the spawn processes var/dst = get_dist(get_turf(M),get_turf(src)) - if(dst <= message_range) //Inside normal message range, FYI -1 is "from self to self" range + if(dst <= message_range || M.stat == DEAD) //Inside normal message range, or dead with ears (handled in the view proc) M << speech_bubble M.hear_say(message, verb, speaking, alt_name, italics, src, speech_sound, sound_vol)