diff --git a/src/main/java/baritone/pathing/movement/MovementHelper.java b/src/main/java/baritone/pathing/movement/MovementHelper.java index 8f886f7e..d602fdad 100644 --- a/src/main/java/baritone/pathing/movement/MovementHelper.java +++ b/src/main/java/baritone/pathing/movement/MovementHelper.java @@ -250,7 +250,7 @@ public interface MovementHelper extends ActionCosts, Helper { if (up instanceof BlockLilyPad) { return true; } - if (BlockStateInterface.isFlowing(state)) { + if (BlockStateInterface.isFlowing(state) || block == Blocks.FLOWING_WATER) { // the only scenario in which we can walk on flowing water is if it's under still water with jesus off return BlockStateInterface.isWater(up) && !Baritone.settings().assumeWalkOnWater.get(); }