From 5caa0542ba84ef5aa7a58cca448810a178667ebc Mon Sep 17 00:00:00 2001 From: Leijurv Date: Sun, 2 Sep 2018 11:48:10 -0700 Subject: [PATCH] ascend should clear the replaceable block in the way --- .../baritone/pathing/movement/movements/MovementAscend.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/baritone/pathing/movement/movements/MovementAscend.java b/src/main/java/baritone/pathing/movement/movements/MovementAscend.java index af29a887..a50dfba8 100644 --- a/src/main/java/baritone/pathing/movement/movements/MovementAscend.java +++ b/src/main/java/baritone/pathing/movement/movements/MovementAscend.java @@ -150,6 +150,8 @@ public class MovementAscend extends Movement { // After 20 ticks without placement, we might be standing in the way, move back state.setInput(InputOverrideHandler.Input.MOVE_BACK, true); } + } else { + state.setInput(InputOverrideHandler.Input.CLICK_LEFT, true); // break whatever replaceable block is in the way } System.out.println("Trying to look at " + anAgainst + ", actually looking at" + selectedBlock); });