Skip to content

Commit

Permalink
Fix standingState being attempted to use as bool
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyyapril committed Nov 16, 2024
1 parent fdf18eb commit d7817c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Shared/Standing/SharedLayingDownSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public bool TryLieDown(EntityUid uid, LayingDownComponent? layingDown = null, St
return false;
}

_standing.Down(uid, true, behavior != DropHeldItemsBehavior.NoDrop, standingState);
_standing.Down(uid, true, behavior != DropHeldItemsBehavior.NoDrop, standingState: standingState);
return true;
}
}
Expand Down

0 comments on commit d7817c0

Please sign in to comment.