This commit is contained in:
jackh 2025-01-20 22:50:51 -07:00
parent 99ebba9cf1
commit cac2975d47
1 changed files with 0 additions and 3 deletions

View File

@ -28,7 +28,6 @@ public class NoFall extends Module {
private double initialY;
private double dynamic;
private boolean isFalling;
private String edging = new String("");
public NoFall() {
super("NoFall", category.player);
@ -57,7 +56,6 @@ public class NoFall extends Module {
double predictedY = mc.thePlayer.posY + mc.thePlayer.motionY;
double distanceFallen = initialY - predictedY;
edging = "";
if (mc.thePlayer.motionY >= -1.1) {
dynamic = 3;
}
@ -89,7 +87,6 @@ public class NoFall extends Module {
initialY = mc.thePlayer.posY;
}
}
edging += " " + dynamic;
//Utils.print("" + mc.thePlayer.ticksExisted + " " + mc.thePlayer.motionY + " " + edging);
}