Fix exception in ShapedOreRecipe.checkMatch for recipes that don't fill entire crafting grid (#3995)

This commit is contained in:
tterrag 2017-06-15 04:12:54 -04:00 committed by LexManos
parent dbc0a4e0fd
commit 8833386ada
1 changed files with 5 additions and 5 deletions

View File

@ -125,11 +125,11 @@ public class ShapedOreRecipe extends IForgeRegistryEntry.Impl<IRecipe> implement
{
target = input.get(subX + subY * width);
}
}
if (!target.apply(inv.getStackInRowAndColumn(x, y)))
{
return false;
if (!target.apply(inv.getStackInRowAndColumn(x, y)))
{
return false;
}
}
}
}