From 7a878f703ffae0cb149cce6358dc01b04ae897a6 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 18 Oct 2023 16:11:33 +1100 Subject: [PATCH] Fix vaulting mispredict (#21082) --- Content.Shared/Climbing/Systems/ClimbSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 4e25fa4ac0..511149f8f9 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -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); } } -- 2.51.2