fix quarry chasing water

This commit is contained in:
AEnterprise 2014-03-09 20:01:00 +01:00
parent ebcd3151bf
commit 7445ce797c

View file

@ -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;
}
/**