fixes Darkoaksto, #661

not all ShapedOreRecipes should be oredicted
This commit is contained in:
way2muchnoise
2016-11-22 19:11:48 +01:00
parent caed616c2f
commit 2c464d740a

View File

@@ -61,7 +61,7 @@ public class CraftingPattern implements ICraftingPattern {
}
outputs.add(out);
if (shapedOre || mekanism) {
if ((isOredict() && shapedOre) || mekanism) {
Object[] inputs = new Object[0];
if (shapedOre) {
inputs = ((ShapedOreRecipe) recipe).getInput();