can't use flowing water, so pack it as such

This commit is contained in:
Leijurv 2018-08-28 12:23:54 -07:00
parent 169eb1d0a3
commit bf05de1de7
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,6 @@
package baritone.chunk; package baritone.chunk;
import baritone.pathing.movement.MovementHelper; import baritone.pathing.movement.MovementHelper;
import baritone.utils.BlockStateInterface;
import baritone.utils.Helper; import baritone.utils.Helper;
import baritone.utils.pathing.PathingBlockType; import baritone.utils.pathing.PathingBlockType;
import net.minecraft.block.Block; import net.minecraft.block.Block;
@ -105,11 +104,12 @@ public final class ChunkPacker implements Helper {
} }
private static PathingBlockType getPathingBlockType(Block block) { private static PathingBlockType getPathingBlockType(Block block) {
if (BlockStateInterface.isWater(block)) { if (block.equals(Blocks.WATER)) {
// only water source blocks are plausibly usable, flowing water should be avoid
return PathingBlockType.WATER; return PathingBlockType.WATER;
} }
if (MovementHelper.avoidWalkingInto(block)) { if (MovementHelper.avoidWalkingInto(block) || block.equals(Blocks.FLOWING_WATER)) {
return PathingBlockType.AVOID; return PathingBlockType.AVOID;
} }
// We used to do an AABB check here // We used to do an AABB check here