From 87dbf1dbba770af62616f1c82ff2548f8a6caf9a Mon Sep 17 00:00:00 2001 From: Leijurv Date: Wed, 5 Dec 2018 17:59:32 -0800 Subject: [PATCH] fix false positive in check --- src/main/java/baritone/pathing/path/PathExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/baritone/pathing/path/PathExecutor.java b/src/main/java/baritone/pathing/path/PathExecutor.java index 749a23e30..0e3e9bea5 100644 --- a/src/main/java/baritone/pathing/path/PathExecutor.java +++ b/src/main/java/baritone/pathing/path/PathExecutor.java @@ -357,7 +357,7 @@ public class PathExecutor implements IPathExecutor, Helper { return false; } else { // we are either onGround or in liquid - if (ctx.player().motionY < 0) { + if (ctx.player().motionY < -0.1) { // if we are strictly moving downwards (not stationary) // we could be falling through water, which could be unsafe to splice return false; // so don't