single threaded

This commit is contained in:
Leijurv 2018-08-23 15:55:25 -07:00
parent 28be7121e3
commit 9accdf097f
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 5 additions and 5 deletions

View File

@ -61,11 +61,11 @@ public class PathingBehavior extends Behavior {
private boolean lastAutoJump; private boolean lastAutoJump;
private void dispatchPathEvent(PathEvent event) { private void dispatchPathEvent(PathEvent event) {
new Thread() { //new Thread() {
public void run() { // public void run() {
Baritone.INSTANCE.getGameEventHandler().onPathEvent(event); Baritone.INSTANCE.getGameEventHandler().onPathEvent(event);
} // }
}.start(); //}.start();
} }
@Override @Override