From f2f69baefa82aa227404135a92cfdcfc51ef9ced Mon Sep 17 00:00:00 2001 From: Mooshimi <85910816+Mooshimi@users.noreply.github.com> Date: Fri, 27 May 2022 10:17:20 -0400 Subject: [PATCH] Ghosts see who rolls a midround antag (#67295) * Changes the alert ghosts get when a dynamic midround ruleset is selected to say the ghost's old name rather than their new one. Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/game/gamemodes/dynamic/dynamic_rulesets_midround.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/dynamic/dynamic_rulesets_midround.dm b/code/game/gamemodes/dynamic/dynamic_rulesets_midround.dm index ee5cdef6b51..f2fa353a51b 100644 --- a/code/game/gamemodes/dynamic/dynamic_rulesets_midround.dm +++ b/code/game/gamemodes/dynamic/dynamic_rulesets_midround.dm @@ -147,7 +147,7 @@ finish_setup(new_character, i) assigned += applicant - notify_ghosts("[new_character] has been picked for the ruleset [name]!", source = new_character, action = NOTIFY_ORBIT, header="Something Interesting!") + notify_ghosts("[applicant.name] has been picked for the ruleset [name]!", source = new_character, action = NOTIFY_ORBIT, header="Something Interesting!") /datum/dynamic_ruleset/midround/from_ghosts/proc/generate_ruleset_body(mob/applicant) var/mob/living/carbon/human/new_character = make_body(applicant)