Skip to content

Commit

Permalink
bugfix: post target cryo message (#4152)
Browse files Browse the repository at this point in the history
  • Loading branch information
ROdenFL authored Dec 29, 2023
1 parent a51286a commit eea81bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/gamemodes/objective.dm
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ GLOBAL_LIST_EMPTY(admin_objective_list)
qdel(src)

for(var/datum/mind/user in owners)
var/list/messages = list(user.prepare_announce_objectives(FALSE))
var/list/messages = list()
messages.Add(user.prepare_announce_objectives(FALSE))
to_chat(user.current, chat_box_red(messages.Join("<br>")))


Expand Down

0 comments on commit eea81bc

Please sign in to comment.