From 16ecde42c06f2c450d0fe63658a1cc978f0a26ef Mon Sep 17 00:00:00 2001 From: Arkatos1 Date: Mon, 22 Apr 2019 15:10:28 +0200 Subject: [PATCH] Adds AntagHUD to everyone at the round end --- code/game/gamemodes/gameticker.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index c2268063822..05f59c2b55b 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -508,6 +508,12 @@ var/round_start_time = 0 //Ask the event manager to print round end information event_manager.RoundEnd() + // Add AntagHUD to everyone, see who was really evil the whole time! + for(var/datum/atom_hud/antag/H in huds) + for(var/m in GLOB.player_list) + var/mob/M = m + H.add_hud_to(M) + return 1 /datum/controller/gameticker/proc/HasRoundStarted()