diff --git a/src/main/java/baritone/pathing/goals/GoalBlock.java b/src/main/java/baritone/pathing/goals/GoalBlock.java index 124740a3..0c96787c 100644 --- a/src/main/java/baritone/pathing/goals/GoalBlock.java +++ b/src/main/java/baritone/pathing/goals/GoalBlock.java @@ -57,16 +57,6 @@ public class GoalBlock implements Goal, IGoalRenderPos { return pos.getX() == this.x && pos.getY() == this.y && pos.getZ() == this.z; } - /** - * The min range value over which to begin considering Y coordinate in the heuristic - */ - private static final double MIN = 20; - - /** - * The max range value over which to begin considering Y coordinate in the heuristic - */ - private static final double MAX = 150; - @Override public double heuristic(BlockPos pos) { int xDiff = pos.getX() - this.x;