From 4643c9df1b7f2232384263def0eb5bb6c0050d2f Mon Sep 17 00:00:00 2001 From: FruitieX Date: Sat, 11 Dec 2010 22:12:13 +0200 Subject: [PATCH] always draw the scoreboard when observing (won't change behaviour in other gamemodes, fixes some panels being visible in CTS where they shouldnt be) --- qcsrc/client/scoreboard.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qcsrc/client/scoreboard.qc b/qcsrc/client/scoreboard.qc index f03ee9965..31cdc45bf 100644 --- a/qcsrc/client/scoreboard.qc +++ b/qcsrc/client/scoreboard.qc @@ -885,6 +885,8 @@ float HUD_WouldDrawScoreboard() { return 1; else if (getstati(STAT_HEALTH) <= 0 && autocvar_cl_deathscoreboard && gametype != GAME_CTS) return 1; + else if (spectatee_status == -1) + return 1; else if (scoreboard_showscores_force) return 1; return 0; -- 2.39.2