This commit is contained in:
Leijurv 2019-03-23 10:52:03 -07:00
parent 52d2741f52
commit f970f932c7
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ public class MovementAscend extends Movement {
double sideDist = zAxis * Math.abs((dest.getX() + 0.5D) - ctx.player().posX) + xAxis * Math.abs((dest.getZ() + 0.5D) - ctx.player().posZ);
double lateralMotion = xAxis * ctx.player().motionZ + zAxis * ctx.player().motionX;
if (Math.abs(lateralMotion) > 0.1 || true) {
if (Math.abs(lateralMotion) > 0.1) {
return state;
}