mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
* Fix to a bug introduced by the fix to the long server uptime bug
This commit is contained in:
parent
91cfe4a77c
commit
ef51968654
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue