From: Rudolf Polzer Date: Sat, 15 Jan 2011 17:05:14 +0000 (+0100) Subject: in mapvote, NEVER show the scoreboard unless TAB is pressed (SHOULD also make the... X-Git-Tag: xonotic-v0.5.0~318^2~109 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d04adf37a47d8542556f7812846207488216d553;p=xonotic%2Fxonotic-data.pk3dir.git in mapvote, NEVER show the scoreboard unless TAB is pressed (SHOULD also make the map voting screen show up) --- 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;