unable to start a parkour jump from stairs

This commit is contained in:
Leijurv
2018-11-23 07:47:28 -08:00
parent 4b8c85f8a6
commit b5a4e65fbf
2 changed files with 3 additions and 2 deletions

View File

@@ -274,7 +274,7 @@ public interface MovementHelper extends ActionCosts, Helper {
// if assumeWalkOnWater is off, we can only walk on water if there is water above it
return isWater(up) ^ Baritone.settings().assumeWalkOnWater.get();
}
if (block instanceof BlockGlass || block instanceof BlockStainedGlass) {
if (block == Blocks.GLASS || block == Blocks.STAINED_GLASS) {
return true;
}
if (block instanceof BlockSlab) {