fix breaking movementfall last block with assumeWalkOnWater

This commit is contained in:
Leijurv 2018-09-15 08:14:57 -07:00
parent 0b30e822c2
commit 20ecab7d53
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
2 changed files with 9 additions and 0 deletions

View File

@ -57,3 +57,7 @@ Sure! (As long as usage is in compliance with the GPL 3 License)
## How is it so fast?
Magic
## Why is it called Baritone?
It's named for FitMC's deep sultry voice.

View File

@ -162,4 +162,9 @@ public class MovementFall extends Movement {
}
return toBreak;
}
@Override
protected boolean prepared(MovementState state) {
return true;
}
}