Adds AntagHUD to everyone at the round end

This commit is contained in:
Arkatos1
2019-04-22 15:10:28 +02:00
parent d9d975a91f
commit 16ecde42c0
+6
View File
@@ -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()