From f38dc703e4e2a7f327358f6ea92a9ce6d4262870 Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Thu, 19 Dec 2024 01:44:08 +0000 Subject: [PATCH] CLIENT: Don't draw hud if the game is over --- source/client/hud.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/hud.qc b/source/client/hud.qc index bbc5eb3..434e20f 100644 --- a/source/client/hud.qc +++ b/source/client/hud.qc @@ -1984,7 +1984,7 @@ void(float width, float height) HUD_Draw = return; } - if ((getstatf(STAT_HEALTH) > 1) && !score_show) + if ((getstatf(STAT_HEALTH) > 1) && !score_show && !game_over) { Draw_Crosshair();