mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 05:57:24 +01:00
Fix compiler errors for 1670 (#30874)
* stage 1 * hud alist * mobs and parry * stage ? * we dont even need an alist here
This commit is contained in:
@@ -660,10 +660,13 @@ SUBSYSTEM_DEF(ticker)
|
||||
log_game("///////////////////////////////////////////////////////")
|
||||
|
||||
// Add AntagHUD to everyone, see who was really evil the whole time!
|
||||
for(var/datum/atom_hud/antag/H in GLOB.huds)
|
||||
for(var/hud_key, hud in GLOB.huds)
|
||||
var/datum/atom_hud/antag/antag_hud = hud
|
||||
if(!istype(antag_hud))
|
||||
continue
|
||||
for(var/m in GLOB.player_list)
|
||||
var/mob/M = m
|
||||
H.add_hud_to(M)
|
||||
antag_hud.add_hud_to(M)
|
||||
|
||||
var/static/list/base_encouragement_messages = list(
|
||||
"Keep on keeping on!",
|
||||
|
||||
Reference in New Issue
Block a user