Skip to content

Commit

Permalink
* Fix to a bug introduced by the fix to the long server uptime bug
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Apr 22, 2006
1 parent 91cfe4a commit ef51968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/server/sv_ccmds.c
Expand Up @@ -234,7 +234,7 @@ static void SV_MapRestart_f( void ) {
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;
}
Expand Down

0 comments on commit ef51968

Please sign in to comment.