r717 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Apr 22 11:57:43 EDT 2006
Author: tma
Date: 2006-04-22 11:57:43 -0400 (Sat, 22 Apr 2006)
New Revision: 717
Modified:
trunk/code/server/sv_ccmds.c
Log:
* Fix to a bug introduced by the fix to the long server uptime bug
Modified: trunk/code/server/sv_ccmds.c
===================================================================
--- trunk/code/server/sv_ccmds.c 2006-04-21 20:51:15 UTC (rev 716)
+++ trunk/code/server/sv_ccmds.c 2006-04-22 15:57:43 UTC (rev 717)
@@ -234,7 +234,7 @@
delay = 5;
}
if( delay && !Cvar_VariableValue("g_doWarmup") ) {
- sv.restartTime = svs.time + delay * 1000;
+ sv.restartTime = sv.time + delay * 1000;
SV_SetConfigstring( CS_WARMUP, va("%i", sv.restartTime) );
return;
}
More information about the quake3-commits
mailing list