From 56ea5c26bb737eee1a138d513a80ef80e2b29f66 Mon Sep 17 00:00:00 2001 From: Mloc-Argent Date: Fri, 2 May 2014 22:28:21 +0100 Subject: [PATCH] mob: fix for say code "randomly" breaking There was a runtiming check for mob.locs[1] in living/say, that would fail if a mob was in bluespace. Signed-off-by: Mloc-Argent --- 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 71688f25b4..882e9d2c99 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -108,7 +108,7 @@ var/list/department_radio_keys = list( if(M.stat == DEAD && client && (M.client.prefs.toggles & CHAT_GHOSTEARS)) listening |= M continue - if(M.locs[1] in hearturfs) + if(M.loc && M.locs[1] in hearturfs) listening |= M for(var/obj/O in objects)