From 4a92c341fc32fea29453462d7a3b8ad731f29c02 Mon Sep 17 00:00:00 2001 From: terencehill Date: Wed, 12 Sep 2018 21:10:11 +0200 Subject: [PATCH] Don't delay displaying of the accuracy panel when the game is over --- qcsrc/client/hud/panel/scoreboard.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.39.2