* Fix to a bug introduced by the fix to the long server uptime bug

This commit is contained in:
Tim Angus 2006-04-22 15:57:43 +00:00
parent 91cfe4a77c
commit ef51968654
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ static void SV_MapRestart_f( void ) {
delay = 5; delay = 5;
} }
if( delay && !Cvar_VariableValue("g_doWarmup") ) { 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) ); SV_SetConfigstring( CS_WARMUP, va("%i", sv.restartTime) );
return; return;
} }