From da5969c2fd9c86c5ccc64beaef034a13a105e2c2 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Thu, 1 Nov 2018 20:58:36 -0700 Subject: [PATCH] shouldnt have taken this long to figure that out --- src/main/java/baritone/utils/ExampleBaritoneControl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/baritone/utils/ExampleBaritoneControl.java b/src/main/java/baritone/utils/ExampleBaritoneControl.java index 4fc094915..a620a86b5 100644 --- a/src/main/java/baritone/utils/ExampleBaritoneControl.java +++ b/src/main/java/baritone/utils/ExampleBaritoneControl.java @@ -59,7 +59,7 @@ public class ExampleBaritoneControl extends Behavior implements Helper { "cancel - Cancels current path\n" + "forcecancel - sudo cancel (only use if very glitched, try toggling 'pause' first)\n" + "gc - Calls System.gc();\n" + - "invert - Runs away from goal (broken, dont use)\n" + + "invert - Runs away from the goal instead of towards it\n" + "follow - Follows a player 'follow username'\n" + "reloadall - (debug) Reloads chunk cache\n" + "saveall - (debug) Saves chunk cache\n" + @@ -265,7 +265,7 @@ public class ExampleBaritoneControl extends Behavior implements Helper { } pathingBehavior.setGoal(new GoalRunAway(1, runAwayFrom) { @Override - public boolean isInGoal(BlockPos pos) { + public boolean isInGoal(int x, int y, int z) { return false; } });