From 732d8068207960b23b22f5067a15acc42c6fc496 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Wed, 17 Oct 2018 12:15:46 -0700 Subject: [PATCH] allow cutting onto next path one movement earlier --- src/main/java/baritone/pathing/path/PathExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/baritone/pathing/path/PathExecutor.java b/src/main/java/baritone/pathing/path/PathExecutor.java index 4acecbdc..61251882 100644 --- a/src/main/java/baritone/pathing/path/PathExecutor.java +++ b/src/main/java/baritone/pathing/path/PathExecutor.java @@ -276,7 +276,7 @@ public class PathExecutor implements IPathExecutor, Helper { return true; } } - return false; // movement is in progress + return canCancel; // movement is in progress, but if it reports cancellable, PathingBehavior is good to cut onto the next path } private Tuple closestPathPos(IPath path) {