From 48731a402a87011a14d1b41abd906a4746f28839 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Sun, 3 Apr 2022 14:08:14 -0700 Subject: [PATCH] Make use of the new IsTeamPlay() check. --- src/client/scoreboard.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/scoreboard.qc b/src/client/scoreboard.qc index dce1d67..3006beb 100644 --- a/src/client/scoreboard.qc +++ b/src/client/scoreboard.qc @@ -181,7 +181,7 @@ Scores_Draw(void) pos = video_mins + [(video_res[0] / 2) - 145, 30]; } - if (serverkeyfloat("teams") > 0) { + if (Util_IsTeamPlay()) { Scores_DrawTeam(pl, pos); } else { Scores_DrawNormal(pl, pos);