Merge branch 'master' of github.com:cabaletta/baritone

This commit is contained in:
Leijurv 2018-08-06 13:51:13 -07:00
commit 4fa64059af
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
4 changed files with 16 additions and 2 deletions

View File

@ -42,8 +42,7 @@ public class PathingBehavior extends Behavior {
@Override
public void onTick(TickEvent event) {
// System.out.println("Ticking");
if (current == null) {
if(event.getType() == TickEvent.Type.OUT || current == null) {
return;
}
current.onTick(event);

View File

@ -13,6 +13,14 @@ public final class TickEvent {
this.type = type;
}
public Type getType() {
return type;
}
public EventState getState() {
return state;
}
public enum Type {
/**

View File

@ -0,0 +1,4 @@
package baritone.bot.pathing.movement.movements;
public class MovementFall {
}

View File

@ -35,6 +35,9 @@ public class PathExecutor extends Behavior {
@Override
public void onTick(TickEvent event) {
if(event.getType() == TickEvent.Type.OUT) {
return;
}
if (pathPosition >= path.length()) {
//stop bugging me, I'm done
//TODO Baritone.INSTANCE.behaviors.remove(this)