From 814bf72d660539570718c60d9368351ce018d49b Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 15 Oct 2017 20:40:57 -0400 Subject: [PATCH 1/2] Fixes emotes not checking the right turf (or any turf for that matter) (#31735) * Fixes emotes not checking the right turf (or any turf for that matter) --- code/datums/emotes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/emotes.dm b/code/datums/emotes.dm index 88e6148c5f..2e5bd580bf 100644 --- a/code/datums/emotes.dm +++ b/code/datums/emotes.dm @@ -50,7 +50,7 @@ for(var/mob/M in GLOB.dead_mob_list) if(!M.client || isnewplayer(M)) continue - var/T = get_turf(src) + var/T = get_turf(user) if(M.stat == DEAD && M.client && (M.client.prefs.chat_toggles & CHAT_GHOSTSIGHT) && !(M in viewers(T, null))) M.show_message(msg)