diff --git a/src/main/java/baritone/pathing/goals/GoalYLevel.java b/src/main/java/baritone/pathing/goals/GoalYLevel.java index 7a437f9d..89cef250 100644 --- a/src/main/java/baritone/pathing/goals/GoalYLevel.java +++ b/src/main/java/baritone/pathing/goals/GoalYLevel.java @@ -48,7 +48,7 @@ public class GoalYLevel implements Goal { } if (pos.getY() < level) { // need to ascend - return (level - pos.getY()) * JUMP_ONE_BLOCK_COST * 0.9; + return (level - pos.getY()) * JUMP_ONE_BLOCK_COST; } return 0; }