From: Mario Date: Fri, 3 Apr 2015 11:19:27 +0000 (+1100) Subject: Use CSQC prediction when cl_movement is 1 (2 uses old engine prediction) X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9f7561f0d08b2096ba8864125ffe91f9a0b718c7;p=xonotic%2Fxonotic-data.pk3dir.git Use CSQC prediction when cl_movement is 1 (2 uses old engine prediction) --- diff --git a/qcsrc/csqcmodellib/cl_player.qc b/qcsrc/csqcmodellib/cl_player.qc index 0bcbd103c..e3717d275 100644 --- a/qcsrc/csqcmodellib/cl_player.qc +++ b/qcsrc/csqcmodellib/cl_player.qc @@ -143,8 +143,8 @@ void CSQCPlayer_Physics(void) { switch(autocvar_cl_movement) { - case 1: runstandardplayerphysics(self); break; - case 2: CSQC_ClientMovement_PlayerMove_Frame(); break; + case 1: CSQC_ClientMovement_PlayerMove_Frame(); break; + case 2: runstandardplayerphysics(self); break; } }