Skip to content

Commit

Permalink
Fixes deadchat message formatting (#36664)
Browse files Browse the repository at this point in the history
  • Loading branch information
SECBATON-GRIFFON committed Jun 11, 2024
1 parent ceda82e commit 10e71ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ var/list/global_deadchat_listeners = list()
log_say("[name]/[key_name(src)] (@[location_text]) Deadsay: [message]")

for(var/mob/M in get_deadchat_hearers())
to_chat(M, "[formatFollow(src)] <span class='name'>[name]</span>[alt_name] <span class='message'>[message]</span></span>")
to_chat(M, "<span class='game deadsay'>[formatFollow(src)] <span class='name'>[name]</span>[alt_name] <span class='message'>[message]</span></span>")

/mob/proc/get_ear()
// returns an atom representing a location on the map from which this
Expand Down

0 comments on commit 10e71ac

Please sign in to comment.