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
2 changed files with 9 additions and 0 deletions

View File

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