From 29c49fbef0d00361c28431dd5cbefdd0b98e94a0 Mon Sep 17 00:00:00 2001 From: Aaron Dean <8dino2@gmail.com> Date: Wed, 6 Nov 2024 16:54:24 -0500 Subject: [PATCH] Save point --- src/action/p_hud.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/action/p_hud.c b/src/action/p_hud.c index 1eb8926c3..389411ca6 100644 --- a/src/action/p_hud.c +++ b/src/action/p_hud.c @@ -862,7 +862,7 @@ static void HUD_UpdateSpectatorTimer(edict_t *clent) if (ctf->value) Ghud_SetInt(clent, hud[h_team_l_num], ctfgame.team1); else - //Ghud_SetInt(clent, hud[h_team_l_num], 13); + //Ghud_SetInt(clent, hud[h_team_l_num], 13); // Testing double digits Ghud_SetInt(clent, hud[h_team_l_num], teams[TEAM1].score); // team 2 (blue team) @@ -871,7 +871,7 @@ static void HUD_UpdateSpectatorTimer(edict_t *clent) if (ctf->value) Ghud_SetInt(clent, hud[h_team_r_num], ctfgame.team2); else - //Ghud_SetInt(clent, hud[h_team_r_num], 25); + //Ghud_SetInt(clent, hud[h_team_r_num], 25); // Testing double digits Ghud_SetInt(clent, hud[h_team_r_num], teams[TEAM2].score); } @@ -975,7 +975,7 @@ void HUD_SpectatorTimerSetup(edict_t *clent) if (teams[TEAM2].score >= 10) // gotta readjust size for justifying purposes hud[h_team_r_num] = Ghud_AddNumber(clent, 35, 60, 0); else - hud[h_team_r_num] = Ghud_AddNumber(clent, 0, 60, 0); + hud[h_team_r_num] = Ghud_AddNumber(clent, 20, 60, 0); Ghud_SetSize(clent, hud[h_team_r_num], 2, 0); Ghud_SetAnchor(clent, hud[h_team_r_num], 0.5, 0);