From 2ba8715272ba6b8bb3d91bce821d5fd9ef30b19c Mon Sep 17 00:00:00 2001 From: div0 Date: Tue, 22 Jul 2008 06:33:08 +0000 Subject: [PATCH] changed team scores format (sorry) git-svn-id: svn://svn.icculus.org/nexuiz/trunk@3883 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/server/g_world.qc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/data/qcsrc/server/g_world.qc b/data/qcsrc/server/g_world.qc index a9faf91ad..b22433168 100644 --- a/data/qcsrc/server/g_world.qc +++ b/data/qcsrc/server/g_world.qc @@ -1013,8 +1013,10 @@ void DumpStats(float final) if(g_ctf) if(cvar("g_ctf_win_mode") != 2) { - s = strcat(":teamscores:", ftos(caps_team1), ":"); - s = strcat(s, ftos(caps_team2), "::"); + s = strcat(":teamscores:", ftos(COLOR_TEAM1), ":"); + s = strcat(s, ftos(caps_team1), ":"); + s = strcat(s, ftos(COLOR_TEAM2), ":"); + s = strcat(s, ftos(caps_team2)); if(to_console) ServerConsoleEcho(s, TRUE); if(to_eventlog) -- 2.39.2