Skip to content

Commit

Permalink
Remove a check
Browse files Browse the repository at this point in the history
  • Loading branch information
jchung01 committed Jul 28, 2024
1 parent 9a8b560 commit 895b8d8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ public void utAutoJump(CallbackInfoReturnable<Boolean> cir)
if (ut$stepAssisted) player.stepHeight -= 0.65f;
ut$stepHeightOverride = player.stepHeight;
}
// Something other than sneaking reduced the step height, clear the saved step height.
else if (player.stepHeight < 1.0f && player.stepHeight != baseStepHeight)
else if (player.stepHeight < 1.0f)
{
ut$stepHeightOverride = 0.0f;
}
Expand Down

0 comments on commit 895b8d8

Please sign in to comment.