Update Visualization.java

added 1.8 fence materials to isTransparent method
This commit is contained in:
Tim Savage 2016-03-25 05:31:38 -05:00
parent ed4f0bbc9a
commit ed9e8ab068

View File

@ -286,6 +286,18 @@ public class Visualization
return ( block.getType() != Material.SNOW && ( return ( block.getType() != Material.SNOW && (
block.getType() == Material.AIR || block.getType() == Material.AIR ||
block.getType() == Material.FENCE || block.getType() == Material.FENCE ||
block.getType() == Material.ACACIA_FENCE ||
block.getType() == Material.BIRCH_FENCE ||
block.getType() == Material.DARK_OAK_FENCE ||
block.getType() == Material.JUNGLE_FENCE ||
block.getType() == Material.NETHER_FENCE ||
block.getType() == Material.SPRUCE_FENCE ||
block.getType() == Material.FENCE_GATE ||
block.getType() == Material.ACACIA_FENCE_GATE ||
block.getType() == Material.BIRCH_FENCE_GATE ||
block.getType() == Material.DARK_OAK_FENCE_GATE ||
block.getType() == Material.SPRUCE_FENCE_GATE ||
block.getType() == Material.JUNGLE_FENCE_GATE ||
block.getType() == Material.SIGN || block.getType() == Material.SIGN ||
block.getType() == Material.SIGN_POST || block.getType() == Material.SIGN_POST ||
block.getType() == Material.WALL_SIGN || block.getType() == Material.WALL_SIGN ||