shouldnt have taken this long to figure that out

This commit is contained in:
Leijurv 2018-11-01 20:58:36 -07:00
parent 990107a1fa
commit da5969c2fd
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -59,7 +59,7 @@ public class ExampleBaritoneControl extends Behavior implements Helper {
"cancel - Cancels current path\n" + "cancel - Cancels current path\n" +
"forcecancel - sudo cancel (only use if very glitched, try toggling 'pause' first)\n" + "forcecancel - sudo cancel (only use if very glitched, try toggling 'pause' first)\n" +
"gc - Calls System.gc();\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" + "follow - Follows a player 'follow username'\n" +
"reloadall - (debug) Reloads chunk cache\n" + "reloadall - (debug) Reloads chunk cache\n" +
"saveall - (debug) Saves 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) { pathingBehavior.setGoal(new GoalRunAway(1, runAwayFrom) {
@Override @Override
public boolean isInGoal(BlockPos pos) { public boolean isInGoal(int x, int y, int z) {
return false; return false;
} }
}); });