This commit is contained in:
Leijurv 2018-08-26 08:22:34 -07:00
parent 6dd501a46b
commit e8c644fc63
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -212,7 +212,7 @@ public class PathExecutor implements Helper {
return true;
}
for (int i = 1; i < Baritone.settings().costVerificationLookahead.get() && pathPosition + i < path.length() - 1; i++) {
if (path.movements().get(pathPosition + 1).recalculateCost() >= ActionCosts.COST_INF) {
if (path.movements().get(pathPosition + i).recalculateCost() >= ActionCosts.COST_INF) {
displayChatMessageRaw("Something has changed in the world and a future movement has become impossible. Cancelling.");
pathPosition = path.length() + 3;
failed = true;