r3881 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Jul 22 02:24:03 EDT 2008


Author: div0
Date: 2008-07-22 02:24:03 -0400 (Tue, 22 Jul 2008)
New Revision: 3881

Modified:
   trunk/data/qcsrc/server/g_world.qc
Log:
writing NOTHING for nonexisting teams would be better...


Modified: trunk/data/qcsrc/server/g_world.qc
===================================================================
--- trunk/data/qcsrc/server/g_world.qc	2008-07-22 06:23:29 UTC (rev 3880)
+++ trunk/data/qcsrc/server/g_world.qc	2008-07-22 06:24:03 UTC (rev 3881)
@@ -1014,7 +1014,7 @@
 	if(cvar("g_ctf_win_mode") != 2)
 	{
 		s = strcat(":teamscores:", ftos(caps_team1), ":");
-		s = strcat(s, ftos(caps_team2), ":0:0");
+		s = strcat(s, ftos(caps_team2), "::");
 		if(to_console)
 			ServerConsoleEcho(s, TRUE);
 		if(to_eventlog)




More information about the nexuiz-commits mailing list