From f1b32126c54e24930c5b5f0061c801188af445df Mon Sep 17 00:00:00 2001 From: LepkoQQ Date: Sat, 16 Mar 2013 11:57:11 +0100 Subject: [PATCH] Fix ShapedOreRecipe checking mirrored recipes --- common/net/minecraftforge/oredict/ShapedOreRecipe.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/net/minecraftforge/oredict/ShapedOreRecipe.java b/common/net/minecraftforge/oredict/ShapedOreRecipe.java index 1f4d748a8..9c868cae2 100644 --- a/common/net/minecraftforge/oredict/ShapedOreRecipe.java +++ b/common/net/minecraftforge/oredict/ShapedOreRecipe.java @@ -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; }