From: Martin Taibr Date: Fri, 27 Mar 2020 05:45:17 +0000 (+0100) Subject: scoreboard: try "&" instead of "and" X-Git-Tag: xonotic-v0.8.5~1133^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c5442799291c6b84f6e588d0861be8bd1962c81d;p=xonotic%2Fxonotic-data.pk3dir.git scoreboard: try "&" instead of "and" --- diff --git a/qcsrc/client/hud/panel/scoreboard.qc b/qcsrc/client/hud/panel/scoreboard.qc index dfa217543..048e826c0 100644 --- a/qcsrc/client/hud/panel/scoreboard.qc +++ b/qcsrc/client/hud/panel/scoreboard.qc @@ -1638,7 +1638,7 @@ void Scoreboard_Draw() { // delimiter if (ll_and_fl) - str = strcat(str, "^7 and "); + str = strcat(str, "^7 & "); else str = strcat(str, "^7 / "); }