fixes #914
This commit is contained in:
parent
4e0878b182
commit
fb83e98707
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ public class OreDictUtils {
|
|||
List<ItemStack> ores = OreDictionary.getOres(name);
|
||||
if (ores.isEmpty())
|
||||
return ItemStack.EMPTY;
|
||||
ItemStack ore = ores.get(0);
|
||||
ItemStack ore = ores.get(0).copy();
|
||||
ore.setCount(amount);
|
||||
return ore;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue