From d884c2dea87487b698112cde501b56da8860be08 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Mon, 6 Aug 2018 08:34:08 -0700 Subject: [PATCH] comment --- .../baritone/bot/pathing/movement/movements/MovementAscend.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/baritone/bot/pathing/movement/movements/MovementAscend.java b/src/main/java/baritone/bot/pathing/movement/movements/MovementAscend.java index a556a5d67..fd55ed7f3 100644 --- a/src/main/java/baritone/bot/pathing/movement/movements/MovementAscend.java +++ b/src/main/java/baritone/bot/pathing/movement/movements/MovementAscend.java @@ -67,6 +67,8 @@ public class MovementAscend extends Movement { public MovementState updateState(MovementState state) { super.updateState(state); System.out.println("Ticking with state " + state.getStatus()); + // TODO incorporate some behavior from ActionClimb (specifically how it waited until it was at most 1.2 blocks away before starting to jump + // for efficiency in ascending minimal height staircases, which is just repeated MovementAscend, so that it doesn't bonk its head on the ceiling repeatedly) switch (state.getStatus()) { case PREPPING: case UNREACHABLE: