This commit is contained in:
Leijurv 2018-11-01 20:27:34 -07:00
parent 42eb86b624
commit 990107a1fa
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -406,13 +406,9 @@ public final class PathingBehavior extends Behavior implements IPathingBehavior,
logDebug("no goal");
return Optional.empty();
}
if (Baritone.settings().simplifyUnloadedYCoord.get()) {
BlockPos pos = null;
if (goal instanceof IGoalRenderPos) {
pos = ((IGoalRenderPos) goal).getGoalPos();
}
if (pos != null && world().getChunk(pos) instanceof EmptyChunk) {
if (Baritone.settings().simplifyUnloadedYCoord.get() && goal instanceof IGoalRenderPos) {
BlockPos pos = ((IGoalRenderPos) goal).getGoalPos();
if (world().getChunk(pos) instanceof EmptyChunk) {
logDebug("Simplifying " + goal.getClass() + " to GoalXZ due to distance");
goal = new GoalXZ(pos.getX(), pos.getZ());
}