fixed syncing things, and bug with last commit

This commit is contained in:
modmuss50 2015-05-16 16:59:36 +01:00
parent 6bd2818e74
commit f7124cb7e6
2 changed files with 5 additions and 4 deletions

View file

@ -117,7 +117,7 @@ public class ItemUtils {
ArrayList<ItemStack> list = new ArrayList<ItemStack>();
for (int oreID : OreDictionary.getOreIDs(stack)){
for(ItemStack ore : OreDictionary.getOres(OreDictionary.getOreName(oreID))){
ItemStack newOre = stack;
ItemStack newOre = ore;
newOre.stackSize = stack.stackSize;
list.add(newOre);
}