mirror of
https://github.com/nzp-team/quakec.git
synced 2025-03-17 08:21:17 +00:00
CLIENT: Don't draw hud if the game is over
This commit is contained in:
parent
63e0581326
commit
f38dc703e4
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue