Fix exception in ShapedOreRecipe.checkMatch for recipes that don't fill entire crafting grid (#3995)
This commit is contained in:
parent
dbc0a4e0fd
commit
8833386ada
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue