diff options
-rw-r--r-- | code/server/sv_ccmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/server/sv_ccmds.c b/code/server/sv_ccmds.c index 8802b3c..0b9d578 100644 --- a/code/server/sv_ccmds.c +++ b/code/server/sv_ccmds.c @@ -282,7 +282,7 @@ static void SV_MapRestart_f( void ) { // to give them the correct time so that when they finish loading // they don't violate the backwards time check in cl_cgame.c for (i=0 ; i<sv_maxclients->integer ; i++) { - if (svs.clients[i].state >= CS_CONNECTED) { + if (svs.clients[i].state == CS_PRIMED) { svs.clients[i].oldServerTime = sv.restartTime; } } |