Fix ShapedOreRecipe checking mirrored recipes

This commit is contained in:
LepkoQQ 2013-03-16 11:57:11 +01:00
parent 304421a4c9
commit f1b32126c5
1 changed files with 2 additions and 2 deletions

View File

@ -167,12 +167,12 @@ public class ShapedOreRecipe implements IRecipe
{
for (int y = 0; y <= MAX_CRAFT_GRID_HEIGHT - height; ++y)
{
if (checkMatch(inv, x, y, true))
if (checkMatch(inv, x, y, false))
{
return true;
}
if (mirrored && checkMatch(inv, x, y, false))
if (mirrored && checkMatch(inv, x, y, true))
{
return true;
}