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)
This commit is contained in:
Jordan Brown
2017-10-15 19:41:01 -05:00
committed by CitadelStationBot
parent be2dc49384
commit 814bf72d66
+1 -1
View File
@@ -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)