diff --git a/src/main/java/techreborn/util/ItemUtils.java b/src/main/java/techreborn/util/ItemUtils.java index b2ab0e262..c81f9d4b0 100644 --- a/src/main/java/techreborn/util/ItemUtils.java +++ b/src/main/java/techreborn/util/ItemUtils.java @@ -106,7 +106,7 @@ public class ItemUtils { ArrayList list = new ArrayList(); for (int oreID : OreDictionary.getOreIDs(stack)) { for (ItemStack ore : OreDictionary.getOres(OreDictionary.getOreName(oreID))) { - ItemStack newOre = ore; + ItemStack newOre = ore.copy(); newOre.stackSize = stack.stackSize; list.add(newOre); }