]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix vaulting mispredict (#21082)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Wed, 18 Oct 2023 05:11:33 +0000 (16:11 +1100)
committerGitHub <noreply@github.com>
Wed, 18 Oct 2023 05:11:33 +0000 (16:11 +1100)
Content.Shared/Climbing/Systems/ClimbSystem.cs

index 4e25fa4ac0d777a2d5a82ab4d03d3c85df363a66..511149f8f9502f99ae2ee6e418c3e8b3d0dae6c5 100644 (file)
@@ -101,7 +101,7 @@ public sealed partial class ClimbSystem : VirtualController
             }
 
             var xform = _xformQuery.GetComponent(uid);
-            _xformSystem.SetLocalPositionNoLerp(uid, xform.LocalPosition + comp.Direction * frameTime, xform);
+            _xformSystem.SetLocalPosition(uid, xform.LocalPosition + comp.Direction * frameTime, xform);
         }
     }