This commit is contained in:
jackh 2025-01-20 22:51:42 -07:00
parent cac2975d47
commit ab97ad7947
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class NoFall extends Module {
isFalling = false;
return;
}
else if (((double) mc.thePlayer.fallDistance >= minFallDistance.getInput())) {
else if ((double) mc.thePlayer.fallDistance >= minFallDistance.getInput()) {
isFalling = true;
}