Fixed oredrops

Fixes #36
This commit is contained in:
joflashstudios 2015-06-17 00:27:44 -04:00
parent 70fb58f704
commit 54904b223f

View file

@ -114,7 +114,7 @@ public class BlockOre extends Block {
}
ArrayList<ItemStack> block = new ArrayList<ItemStack>();
block.add(new ItemStack(Item.getItemFromBlock(this)));
block.add(new ItemStack(Item.getItemFromBlock(this), 1, metadata));
return block;
}