From 51f1cadbb8abaa3a51ed6edff61f4c48dcaadb66 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Sun, 16 Sep 2018 16:50:56 -0700 Subject: [PATCH] now unused --- src/main/java/baritone/pathing/goals/GoalBlock.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main/java/baritone/pathing/goals/GoalBlock.java b/src/main/java/baritone/pathing/goals/GoalBlock.java index 124740a3e..0c96787c5 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;