Fix #772
This commit is contained in:
parent
871edce960
commit
ee9f48bc84
1 changed files with 2 additions and 1 deletions
|
@ -448,10 +448,11 @@ public class ModRecipes {
|
|||
|
||||
boolean ore = data[0].equals("ore");
|
||||
Core.logHelper.debug("Ore: " + data[1]);
|
||||
ItemStack dust = getDictOreOrNull(joinDictName("dust", data[1]), ore ? 2 : 1);
|
||||
ItemStack dust = getDictOreOrNull(joinDictName("dust", data[1]), ore ? 2 : 1).copy();
|
||||
if (dust == null || dust.getItem() == null) {
|
||||
continue;
|
||||
}
|
||||
dust.stackSize = 2;
|
||||
RecipeHandler.addRecipe(new GrinderRecipe(oreStack, dust, ore ? 270 : 200, ore ? 31 : 22));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue