Add stone to usesData HashSet.

This commit is contained in:
Dumbo52 2015-02-28 18:46:49 -05:00
parent 1209e48470
commit 55f1f42ebf

View File

@ -728,6 +728,7 @@ public enum BlockType {
*/ */
private static final Set<Integer> usesData = new HashSet<Integer>(); private static final Set<Integer> usesData = new HashSet<Integer>();
static { static {
usesData.add(BlockID.STONE);
usesData.add(BlockID.DIRT); usesData.add(BlockID.DIRT);
usesData.add(BlockID.WOOD); usesData.add(BlockID.WOOD);
usesData.add(BlockID.SAPLING); usesData.add(BlockID.SAPLING);