From ebd3ce42d04ee8ca52d6d1af3451ff653d960ca6 Mon Sep 17 00:00:00 2001 From: Brady Date: Mon, 5 Nov 2018 18:28:29 -0600 Subject: [PATCH] whoops --- src/api/java/baritone/api/behavior/IPathingBehavior.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/api/java/baritone/api/behavior/IPathingBehavior.java b/src/api/java/baritone/api/behavior/IPathingBehavior.java index 622c453a..c8728965 100644 --- a/src/api/java/baritone/api/behavior/IPathingBehavior.java +++ b/src/api/java/baritone/api/behavior/IPathingBehavior.java @@ -50,11 +50,12 @@ public interface IPathingBehavior extends IBehavior { boolean isPathing(); /** - * Cancels the pathing behavior or the current path calculation. Also cancels all processes that could be controlling path. + * Cancels the pathing behavior or the current path calculation, and all processes that could be controlling path. *

* 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 + * @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 */ boolean cancelEverything();