Merge pull request #42 from tim-savage/fences

Update Visualization.java with 1.8 fence materials
This commit is contained in:
Ryan Hamshire 2016-05-11 10:58:38 -07:00
commit 47fd2d951a

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 ||