Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Metis
2024-10-28 22:21:26 -04:00
9 changed files with 110 additions and 14 deletions
+7 -6
View File
@@ -57,12 +57,13 @@
user.log_message(msg, LOG_EMOTE)
msg = "<span class='emote'><b>[user]</b> [msg]</span>"
for(var/mob/M in GLOB.dead_mob_list)
if(!M.client || isnewplayer(M))
continue
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)
if(user.client)
for(var/mob/M in GLOB.dead_mob_list)
if(!M.client || isnewplayer(M))
continue
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)
if(emote_type == EMOTE_AUDIBLE)
user.audible_message(msg)