]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/hud/panel/scoreboard.qc
scoreboard: try "&" instead of "and"
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / panel / scoreboard.qc
index f518b3b436d2826b210d2bd09dc9c74a13d8f8ff..048e826c0623fd5414b399abc6851ec4fc5385b2 100644 (file)
@@ -1615,6 +1615,8 @@ void Scoreboard_Draw()
        {
                if(fl > 0)
                {
+                       if(tl > 0)
+                               str = strcat(str, "^7 / "); // delimiter
                        if(teamplay)
                        {
                                str = strcat(str, sprintf(_("^5%s %s"), ScoreString(teamscores_flags(ts_primary), fl),
@@ -1636,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 / ");
                        }