fix quarry chasing water
This commit is contained in:
parent
ebcd3151bf
commit
7445ce797c
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public class BlockUtil {
|
|||
}
|
||||
|
||||
public static boolean isSoftBlock(Block block, World world, int x, int y, int z) {
|
||||
return block == null || BuildCraftAPI.softBlocks.contains(block) || block.isAir(world, x, y, z);
|
||||
return block == null || BuildCraftAPI.softBlocks.contains(block) || block.isAir(world, x, y, z) || block == Blocks.water || block == Blocks.flowing_water;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue