]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
fixed sv_freezenonclients (now freezes time as well)
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 2 Feb 2004 04:32:50 +0000 (04:32 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 2 Feb 2004 04:32:50 +0000 (04:32 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3855 d7cf8633-e32d-0410-b094-e92efae38249

sv_phys.c

index e1ef0f96cc3ad79c86990e94b73e6a5ba275881e..82b74882ab9c7c5ec1e7c1b32a632fc83ee84ef8 100644 (file)
--- a/sv_phys.c
+++ b/sv_phys.c
@@ -1391,20 +1391,23 @@ void SV_Physics (void)
                if (pr_global_struct->force_retouch)
                        SV_LinkEdict (ent, true);       // force retouch even for stationary
 
-               if (i <= svs.maxclients && i > 0)
+               if (i <= svs.maxclients)
                {
-                       if (!svs.clients[i-1].spawned)
-                               continue;
-                       // connected slot
-                       // call standard client pre-think
-                       SV_CheckVelocity (ent);
-                       pr_global_struct->time = sv.time;
-                       pr_global_struct->self = EDICT_TO_PROG(ent);
-                       PR_ExecuteProgram (pr_global_struct->PlayerPreThink, "QC function PlayerPreThink is missing");
-                       SV_CheckVelocity (ent);
+                       if (i > 0)
+                       {
+                               if (!svs.clients[i-1].spawned)
+                                       continue;
+                               // connected slot
+                               // call standard client pre-think
+                               SV_CheckVelocity (ent);
+                               pr_global_struct->time = sv.time;
+                               pr_global_struct->self = EDICT_TO_PROG(ent);
+                               PR_ExecuteProgram (pr_global_struct->PlayerPreThink, "QC function PlayerPreThink is missing");
+                               SV_CheckVelocity (ent);
+                       }
                }
                else if (sv_freezenonclients.integer)
-                       break;
+                       continue;
 
                // LordHavoc: merged client and normal entity physics
                switch ((int) ent->v->movetype)
@@ -1469,7 +1472,7 @@ void SV_Physics (void)
                        break;
                }
 
-               if (i > 0 && i <= svs.maxclients && !ent->e->free)
+               if (i <= svs.maxclients && i > 0 && !ent->e->free)
                {
                        SV_CheckVelocity (ent);
 
@@ -1496,7 +1499,8 @@ void SV_Physics (void)
                PR_ExecuteProgram ((func_t)(EndFrameQC - pr_functions), "");
        }
 
-       sv.time += sv.frametime;
+       if (!sv_freezenonclients.integer)
+               sv.time += sv.frametime;
 }