[quake3-commits] r1671 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Fri Oct 16 15:21:32 EDT 2009
Author: tma
Date: 2009-10-16 15:21:31 -0400 (Fri, 16 Oct 2009)
New Revision: 1671
Modified:
trunk/code/server/sv_ccmds.c
Log:
* Actually that can be more precise...
Modified: trunk/code/server/sv_ccmds.c
===================================================================
--- trunk/code/server/sv_ccmds.c 2009-10-15 23:39:19 UTC (rev 1670)
+++ trunk/code/server/sv_ccmds.c 2009-10-16 19:21:31 UTC (rev 1671)
@@ -282,7 +282,7 @@
// 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;
}
}
More information about the quake3-commits
mailing list