r6003 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Feb 27 00:45:10 EST 2009


Author: div0
Date: 2009-02-27 00:45:09 -0500 (Fri, 27 Feb 2009)
New Revision: 6003

Modified:
   trunk/data/qcsrc/server/scores.qc
Log:
remove the team number from the fullstatus


Modified: trunk/data/qcsrc/server/scores.qc
===================================================================
--- trunk/data/qcsrc/server/scores.qc	2009-02-27 05:43:38 UTC (rev 6002)
+++ trunk/data/qcsrc/server/scores.qc	2009-02-27 05:45:09 UTC (rev 6003)
@@ -450,9 +450,7 @@
 				s = strcat(s, ":human");
 			else
 				s = strcat(s, ":bot");
-			if(p.classname == "player" || g_arena || g_lms)
-				s = strcat(s, ":", ftos(p.team));
-			else
+			if(p.classname != "player" && !g_arena && !g_lms)
 				s = strcat(s, ":spectator");
 		}
 		else




More information about the nexuiz-commits mailing list