Skip to content

Commit 3080e08

Browse files
committed
Critical failsafe update
Forced triggering failsafe after falling into the void - Hypixel staff apparently abuses it
1 parent d0ea39c commit 3080e08

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ baseGroup=com.jelly.farmhelperv2
44
mcVersion=1.8.9
55
modid=farmhelperv2
66
modName=FarmHelper
7-
version=2.9.1-pre2
7+
version=2.9.1
88
shouldRelease=true

src/main/java/com/jelly/farmhelperv2/macro/AbstractMacro.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import com.jelly.farmhelperv2.config.FarmHelperConfig;
55
import com.jelly.farmhelperv2.event.ReceivePacketEvent;
66
import com.jelly.farmhelperv2.failsafe.FailsafeManager;
7+
import com.jelly.farmhelperv2.failsafe.impl.RotationFailsafe;
78
import com.jelly.farmhelperv2.feature.FeatureManager;
89
import com.jelly.farmhelperv2.feature.impl.DesyncChecker;
910
import com.jelly.farmhelperv2.feature.impl.LagDetector;
@@ -148,9 +149,9 @@ public void onTick() {
148149
checkOnSpawnClock.schedule(5000);
149150
}
150151
if (mc.thePlayer.getPosition().getY() < 0) {
151-
LogUtils.sendError("Build a wall between the rewarp point and the void to prevent falling out of the garden! Disabling the macro...");
152-
MacroHandler.getInstance().disableMacro();
152+
LogUtils.sendError("Build a wall between the rewarp point and the void to prevent falling out of the garden! If it's there already, then you've been macro checked, good luck.");
153153
MacroHandler.getInstance().triggerWarpGarden(true, false);
154+
FailsafeManager.getInstance().possibleDetection(RotationFailsafe.getInstance());
154155
return;
155156
}
156157

0 commit comments

Comments
 (0)