[nexuiz-commits] r8549 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Jan 25 09:11:46 EST 2010


Author: lordhavoc
Date: 2010-01-25 09:11:46 -0500 (Mon, 25 Jan 2010)
New Revision: 8549

Modified:
   trunk/data/qcsrc/server/cl_client.qc
Log:
print less annoying message when client connects (it was saying they
joined a team, while they are an observer)


Modified: trunk/data/qcsrc/server/cl_client.qc
===================================================================
--- trunk/data/qcsrc/server/cl_client.qc	2010-01-25 05:59:43 UTC (rev 8548)
+++ trunk/data/qcsrc/server/cl_client.qc	2010-01-25 14:11:46 UTC (rev 8549)
@@ -1393,7 +1393,7 @@
 
 	bprint("^4", self.netname, "^4 connected");
 
-	if(g_domination || g_ctf)
+	if(self.classname != "observer" && (g_domination || g_ctf))
 		bprint(" and joined the ", ColoredTeamName(self.team));
 
 	bprint("\n");



More information about the nexuiz-commits mailing list