]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/g_world.qc
Merge branch 'master' into TimePath/physics
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_world.qc
index 5102aecdf69e6ff2dd931611274a2630db91897a..7d477ac577daf27f5074f1b4194766172b6512b3 100644 (file)
@@ -2004,7 +2004,7 @@ void Physics_Frame()
                        it.movetype = mt;
                        continue;
                }
-               
+
                it.movetype = ((it.move_qcphysics) ? MOVETYPE_NONE : it.move_movetype);
 
                if(it.move_movetype == MOVETYPE_NONE)
@@ -2025,6 +2025,7 @@ void Physics_Frame()
        });
 }
 
+void systems_update();
 void EndFrame()
 {
        anticheat_endframe();
@@ -2059,6 +2060,7 @@ void EndFrame()
                PlayerState s = PS(it);
                s.ps_push(s, it);
        });
+       systems_update();
        IL_ENDFRAME();
 }