diff --git a/Content.Shared/Physics/Pull/PullController.cs b/Content.Shared/Physics/Pull/PullController.cs index b34b571dcc..5ad3dff9df 100644 --- a/Content.Shared/Physics/Pull/PullController.cs +++ b/Content.Shared/Physics/Pull/PullController.cs @@ -256,6 +256,12 @@ namespace Content.Shared.Physics.Pull { MovingTo = null; } + + if (LinearVelocity != Vector2.Zero) + { + var angle = LinearVelocity.ToAngle(); + ControlledComponent.Owner.Transform.LocalRotation = angle; + } } } }