Client: Also check if we're fake-spectator before showing scores

This commit is contained in:
Marco Cawthorne 2022-05-13 10:50:24 -07:00
parent 70a2e72e45
commit 80bd490127
Signed by: eukara
GPG key ID: C196CD8BA993248A

View file

@ -412,7 +412,7 @@ CSQC_UpdateView(float w, float h, float focus)
Fade_Update((int)video_mins[0],(int)video_mins[1], (int)w, (int)h);
View_PostDraw();
if (Client_InIntermission() || cl.IsDead()) {
if (Client_InIntermission() || (!cl.IsFakeSpectator() && cl.IsDead())) {
Scores_Draw();
} else if (focus == TRUE) {
GameText_Draw();