r4360 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Sep 5 13:55:04 EDT 2008


Author: esteel
Date: 2008-09-05 13:55:03 -0400 (Fri, 05 Sep 2008)
New Revision: 4360

Modified:
   trunk/data/qcsrc/server/sv_main.qc
Log:
only care about warmupstage and warmuplimit if in tourney mode!


Modified: trunk/data/qcsrc/server/sv_main.qc
===================================================================
--- trunk/data/qcsrc/server/sv_main.qc	2008-09-05 17:42:52 UTC (rev 4359)
+++ trunk/data/qcsrc/server/sv_main.qc	2008-09-05 17:55:03 UTC (rev 4360)
@@ -153,7 +153,8 @@
 	Spawnqueue_Check();
 
 	// if in warmup stage and limit for warmup is hit start match
-	if (!tourneyInMatchStage
+	if (g_tourney
+	    && !tourneyInMatchStage
 	    && 0 < g_tourney_warmup_limit
 	    && (time + RESTART_COUNTDOWN) >= g_tourney_warmup_limit)
 	{




More information about the nexuiz-commits mailing list