]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
in mapvote, NEVER show the scoreboard unless TAB is pressed (SHOULD also make the...
authorRudolf Polzer <divverent@alientrap.org>
Sat, 15 Jan 2011 17:05:14 +0000 (18:05 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Sat, 15 Jan 2011 17:05:14 +0000 (18:05 +0100)
qcsrc/client/scoreboard.qc

index 4055f54007f6233d05bd7b5a3fd941f075944f3a..aabc069f17a88620c618c0a4dfd3013d499d1339 100644 (file)
@@ -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;