This commit is contained in:
jackh 2025-01-20 22:48:08 -07:00
parent 955f09e05e
commit 99ebba9cf1
1 changed files with 3 additions and 3 deletions

View File

@ -124,6 +124,9 @@ public class NoFall extends Module {
if (Utils.isBedwarsPractice()) {
return true;
}
if (Utils.spectatorCheck()) {
return true;
}
if (mc.thePlayer.onGround) {
return true;
}
@ -142,9 +145,6 @@ public class NoFall extends Module {
if (mc.thePlayer.capabilities.isFlying) {
return true;
}
if (Utils.spectatorCheck()) {
return true;
}
return false;
}