From e11e3dfd864dede96cb9764deb98f6b55ffe4f92 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Mon, 5 Nov 2018 14:22:30 -0800 Subject: [PATCH] explain --- src/api/java/baritone/api/process/IBaritoneProcess.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/api/java/baritone/api/process/IBaritoneProcess.java b/src/api/java/baritone/api/process/IBaritoneProcess.java index 3f907c3d..d05bd8ef 100644 --- a/src/api/java/baritone/api/process/IBaritoneProcess.java +++ b/src/api/java/baritone/api/process/IBaritoneProcess.java @@ -43,7 +43,8 @@ public interface IBaritoneProcess { * * @param calcFailed true if this specific process was in control last tick, and there was a CALC_FAILED event last tick * @param isSafeToCancel true if a REQUEST_PAUSE would happen this tick, and PathingBehavior wouldn't actually tick. - * false if the PathExecutor reported pausing would be unsafe at the end of the last tick + * false if the PathExecutor reported pausing would be unsafe at the end of the last tick. + * Effectively "could request cancel or pause and have it happen right away" * @return what the PathingBehavior should do */ PathingCommand onTick(boolean calcFailed, boolean isSafeToCancel);