From f08c418342d1e9faa4649531ed8ce960135e738a Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 13 Jun 2016 15:36:13 +1000 Subject: [PATCH] Fix capture shield HUD --- qcsrc/client/hud/panel/modicons.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qcsrc/client/hud/panel/modicons.qc b/qcsrc/client/hud/panel/modicons.qc index 38dac05ae..54c835831 100644 --- a/qcsrc/client/hud/panel/modicons.qc +++ b/qcsrc/client/hud/panel/modicons.qc @@ -200,9 +200,9 @@ void HUD_Mod_CTF(vector pos, vector mySize) } MACRO_END X(red, myteam != NUM_TEAM_1); X(blue, myteam != NUM_TEAM_2); - X(yellow, myteam != NUM_TEAM_3); - X(pink, myteam != NUM_TEAM_4); - X(neutral, true); + X(yellow, myteam != NUM_TEAM_3 && team_count >= 3); + X(pink, myteam != NUM_TEAM_4 && team_count >= 4); + X(neutral, ctf_oneflag); #undef X if (ctf_oneflag) { -- 2.39.2