Skip to content

Commit

Permalink
Fix footsteps in midair. Fixes #288
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Mar 31, 2024
1 parent bac01cb commit 470514f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected void simulateStationary() {
if (isImmobile && (entity.isOnGround() || !entity.isSubmergedInWater()) && playbackImmobile()) {
Association assos = associations.findAssociation(0d, isRightFoot);

if (!assos.isSilent() || !isImmobile) {
if (assos.isResult() && (!assos.isSilent() || !isImmobile)) {
playStep(assos, State.STAND);
}
}
Expand Down

0 comments on commit 470514f

Please sign in to comment.