Skip to content

Commit

Permalink
fix repeating standing/laying bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyyapril committed Jan 13, 2025
1 parent a36cffd commit cf39230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ private void Buckle(Entity<BuckleComponent> buckle, Entity<StrapComponent> 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);
Expand Down Expand Up @@ -512,4 +512,4 @@ private bool CanUnbuckle(Entity<BuckleComponent?> buckle, EntityUid? user, bool
return !unstrapAttempt.Cancelled;
}

}
}

0 comments on commit cf39230

Please sign in to comment.