From b60d9fa04b6adf1dae6d58f8fe4bd9eea8d5bf86 Mon Sep 17 00:00:00 2001 From: Mike Long Date: Thu, 10 Mar 2016 13:19:22 -0500 Subject: [PATCH] Fixes a call using an argument that doesn't exist. --- code/game/gamemodes/antag_hud.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/antag_hud.dm b/code/game/gamemodes/antag_hud.dm index d470b579530..464698a6f34 100644 --- a/code/game/gamemodes/antag_hud.dm +++ b/code/game/gamemodes/antag_hud.dm @@ -43,7 +43,7 @@ leave_all_huds() ticker.mode.set_antag_hud(current, antag_hud_icon_state) if(newhud) - newhud.join_hud(current, newhud.self_visible) + newhud.join_hud(current) /datum/mind/proc/leave_all_huds() for(var/datum/atom_hud/antag/hud in huds)