Merge branch 'master' into service-loader

This commit is contained in:
Leijurv 2018-10-01 09:53:03 -07:00
commit c67339dc42
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -343,7 +343,7 @@ public final class PathingBehavior extends Behavior implements IPathingBehavior,
// TODO simplify each individual goal in a GoalComposite
if (pos != null && world().getChunk(pos) instanceof EmptyChunk) {
logDebug("Simplifying " + goal.getClass() + " to GoalXZ due to distance");
logDebug("Simplifying " + goal.toString().split("\\{")[0] + " to GoalXZ due to distance");
goal = new GoalXZ(pos.getX(), pos.getZ());
}
}