Should fix some issues(like grass)

This commit is contained in:
Anton 2014-04-09 19:04:57 +03:00
parent 322f3c0eb1
commit 5f03ba66a0

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.isReplaceable(world, x, y, z) || block.isAir(world, x, y, z);
}
/**