This commit is contained in:
Leijurv 2018-11-05 14:37:05 -08:00
parent e11e3dfd86
commit 30408384c6
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
3 changed files with 11 additions and 4 deletions

View File

@ -53,8 +53,10 @@ public interface IPathingBehavior extends IBehavior {
* Cancels the pathing behavior or the current path calculation. Also cancels all processes that could be controlling path.
* <p>
* Basically, "MAKE IT STOP".
*
* @return whether or not the pathing behavior was canceled. All processes are guaranteed to be canceled, but the PathingBehavior might be in the middle of an uncancelable action like a parkour jump
*/
void cancelEverything();
boolean cancelEverything();
/**
* Returns the current path, from the current path executor, if there is one.

View File

@ -254,9 +254,13 @@ public final class PathingBehavior extends Behavior implements IPathingBehavior,
}
@Override
public void cancelEverything() {
secretInternalSegmentCancel();
public boolean cancelEverything() {
boolean doIt = isSafeToCancel();
if (doIt) {
secretInternalSegmentCancel();
}
baritone.getPathingControlManager().cancelEverything();
return doIt;
}
public boolean calcFailedLastTick() { // NOT exposed on public api
@ -275,6 +279,7 @@ public final class PathingBehavior extends Behavior implements IPathingBehavior,
public void forceCancel() { // NOT exposed on public api
cancelEverything();
secretInternalSegmentCancel();
isPathCalcInProgress = false;
}

View File

@ -79,7 +79,7 @@ public class GetToBlockProcess extends BaritoneProcessHelper implements IGetToBl
if (goal.isInGoal(playerFeet())) {
onLostControl();
}
return new PathingCommand(goal, PathingCommandType.SET_GOAL_AND_PATH);
return new PathingCommand(goal, PathingCommandType.REVALIDATE_GOAL_AND_PATH);
}
@Override