From cac2975d47d8d7238688ecba6d0de342a195b677 Mon Sep 17 00:00:00 2001 From: jackh Date: Mon, 20 Jan 2025 22:50:51 -0700 Subject: [PATCH] t --- src/main/java/keystrokesmod/module/impl/player/NoFall.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/keystrokesmod/module/impl/player/NoFall.java b/src/main/java/keystrokesmod/module/impl/player/NoFall.java index 063d178..57ce87c 100644 --- a/src/main/java/keystrokesmod/module/impl/player/NoFall.java +++ b/src/main/java/keystrokesmod/module/impl/player/NoFall.java @@ -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); }