Skip to content

Commit

Permalink
Ports ghost runechat (#2113)
Browse files Browse the repository at this point in the history
* adds runechat to ghosts

* this actually can be shaved off
  • Loading branch information
Gboster-0 authored May 4, 2024
1 parent 9097363 commit be53a1f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/modules/mob/mob_say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@
displayed_key = null
deadchat_broadcast(rendered, source, follow_target = src, speaker_key = displayed_key)

// LOBOTOMYCORP ADDITION START
for(var/mob/M in GLOB.player_list)
if(!isdead(M))
continue
if(M.client?.prefs.chat_on_map)
M.create_chat_message(src, /datum/language/common, message)
// LOBOTOMYCORP ADDITION END

///Check if this message is an emote
/mob/proc/check_emote(message, forced)
if(message[1] == "*")
Expand Down

0 comments on commit be53a1f

Please sign in to comment.