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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Sep 4 10:35:24 EDT 2009


Author: div0
Date: 2009-09-04 10:35:23 -0400 (Fri, 04 Sep 2009)
New Revision: 7628

Modified:
   trunk/data/qcsrc/server/teamplay.qc
Log:
allow recalling the welcome message by +show_info in campaign


Modified: trunk/data/qcsrc/server/teamplay.qc
===================================================================
--- trunk/data/qcsrc/server/teamplay.qc	2009-09-04 11:18:03 UTC (rev 7627)
+++ trunk/data/qcsrc/server/teamplay.qc	2009-09-04 14:35:23 UTC (rev 7628)
@@ -429,7 +429,7 @@
 
 	if(cvar("g_campaign"))
 	{
-		if(self.classname == "player")
+		if(self.classname == "player" && !self.BUTTON_INFO)
 			return;
 	}
 	else
@@ -462,7 +462,7 @@
 			specString = strcat(specString, "\n\n", getTimeoutText(1));
 		else
 		{
-			if(!self.BUTTON_INFO && self.classname == "player")
+			if(self.classname == "player")
 				return;
 			goto normal;
 		}



More information about the nexuiz-commits mailing list