From: terencehill Date: Wed, 12 Sep 2018 19:10:11 +0000 (+0200) Subject: Don't delay displaying of the accuracy panel when the game is over X-Git-Tag: xonotic-v0.8.5~1841^2~1 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=4a92c341fc32fea29453462d7a3b8ad731f29c02;p=xonotic%2Fxonotic-data.pk3dir.git Don't delay displaying of the accuracy panel when the game is over --- diff --git a/qcsrc/client/hud/panel/scoreboard.qc b/qcsrc/client/hud/panel/scoreboard.qc index c4afbe98f..3d9e333ba 100644 --- a/qcsrc/client/hud/panel/scoreboard.qc +++ b/qcsrc/client/hud/panel/scoreboard.qc @@ -1504,7 +1504,8 @@ bool Scoreboard_AccuracyStats_WouldDraw(float ypos) return false; if (time < scoreboard_time + autocvar_hud_panel_scoreboard_accuracy_showdelay - && ypos > autocvar_hud_panel_scoreboard_accuracy_showdelay_minpos * vid_conheight) + && ypos > autocvar_hud_panel_scoreboard_accuracy_showdelay_minpos * vid_conheight + && !intermission) { return false; }