diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index c323f3dfb72..733454d46b2 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -360,7 +360,7 @@ private void Buckle(Entity buckle, Entity strap switch (strap.Comp.Position) { case StrapPosition.Stand: - _standing.Stand(buckle); + _standing.Stand(buckle, force: true); break; case StrapPosition.Down: _standing.Down(buckle, false, false); @@ -512,4 +512,4 @@ private bool CanUnbuckle(Entity buckle, EntityUid? user, bool return !unstrapAttempt.Cancelled; } -} \ No newline at end of file +}