null check outputs, fixes #513
This commit is contained in:
@@ -79,11 +79,15 @@ public class CraftingStepCraft extends CraftingStep {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (ItemStack byproduct : (pattern.isOredict()? pattern.getByproducts(took) : pattern.getByproducts())) {
|
for (ItemStack byproduct : (pattern.isOredict()? pattern.getByproducts(took) : pattern.getByproducts())) {
|
||||||
toInsertItems.add(byproduct.copy());
|
if(byproduct != null) {
|
||||||
|
toInsertItems.add(byproduct.copy());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (ItemStack output : (pattern.isOredict() ? pattern.getOutputs(took) : pattern.getOutputs())) {
|
for (ItemStack output : (pattern.isOredict() ? pattern.getOutputs(took) : pattern.getOutputs())) {
|
||||||
toInsertItems.add(output.copy());
|
if(output != null) {
|
||||||
|
toInsertItems.add(output.copy());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user