Skip to content

Commit

Permalink
not candles sadly
Browse files Browse the repository at this point in the history
  • Loading branch information
Superlagg committed Jul 15, 2024
1 parent c57e1bf commit 1ac0f38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/mob/living/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@
data["message_mode"] = message_mode
// make a second one, for in case we go from not seeing them to seeing them
if(data["is_eaves"] || data["is_far"] || data["display_turf"])
var/list/cooldata = data
data["is_eaves"] = FALSE
data["is_far"] = FALSE
data["display_turf"] = null
var/list/cooldata = data.copy()

Check failure on line 204 in code/modules/mob/living/say.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined proc: "copy" on /list
cooldata["is_eaves"] = FALSE
cooldata["is_far"] = FALSE
cooldata["display_turf"] = null
create_chat_message(speaker, message_language, raw_message, spans, NONE, cooldata)
create_chat_message(speaker, message_language, raw_message, spans, NONE, data)

Expand Down

0 comments on commit 1ac0f38

Please sign in to comment.