From d04adf37a47d8542556f7812846207488216d553 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sat, 15 Jan 2011 18:05:14 +0100 Subject: [PATCH] in mapvote, NEVER show the scoreboard unless TAB is pressed (SHOULD also make the map voting screen show up) --- qcsrc/client/scoreboard.qc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/scoreboard.qc b/qcsrc/client/scoreboard.qc index 4055f5400..aabc069f1 100644 --- a/qcsrc/client/scoreboard.qc +++ b/qcsrc/client/scoreboard.qc @@ -882,10 +882,12 @@ float HUD_WouldDrawScoreboard() { return 1; else if (intermission == 1) return 1; + else if (intermission == 2) + return 0; else if (getstati(STAT_HEALTH) <= 0 && autocvar_cl_deathscoreboard && gametype != GAME_CTS) return 1; - else if (spectatee_status == -1) - return 1; + else if (spectatee_status == -1) + return 1; else if (scoreboard_showscores_force) return 1; return 0; -- 2.39.2