This commit is contained in:
Leijurv 2018-08-31 16:50:25 -07:00
parent 24c5c5d238
commit 791eb886c0
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -136,7 +136,7 @@ public class PathExecutor implements Helper {
}
if (distanceFromPath > MAX_MAX_DIST_FROM_PATH) {
if (!(path.movements().get(pathPosition) instanceof MovementFall)) { // might be midair
if (pathPosition > 0 || !(path.movements().get(pathPosition - 1) instanceof MovementFall)) { // might have overshot the landing
if (pathPosition == 0 || !(path.movements().get(pathPosition - 1) instanceof MovementFall)) { // might have overshot the landing
displayChatMessageRaw("too far from path");
pathPosition = path.length() + 3;
Baritone.INSTANCE.getInputOverrideHandler().clearAllKeys();