r3883 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Jul 22 02:33:08 EDT 2008


Author: div0
Date: 2008-07-22 02:33:08 -0400 (Tue, 22 Jul 2008)
New Revision: 3883

Modified:
   trunk/data/qcsrc/server/g_world.qc
Log:
changed team scores format (sorry)


Modified: trunk/data/qcsrc/server/g_world.qc
===================================================================
--- trunk/data/qcsrc/server/g_world.qc	2008-07-22 06:32:17 UTC (rev 3882)
+++ trunk/data/qcsrc/server/g_world.qc	2008-07-22 06:33:08 UTC (rev 3883)
@@ -1013,8 +1013,10 @@
 	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)




More information about the nexuiz-commits mailing list