From 11c96949ec7dedb4f439369b415aa8170eead8da Mon Sep 17 00:00:00 2001 From: viliml Date: Wed, 9 Oct 2013 19:19:39 +0200 Subject: [PATCH] Fix Forge ore dictionary support for the Assembly Table Fixes https://github.com/BuildCraft/BuildCraft/issues/531 . Don't worry, I checked it and it has no errors and works as intended :D --- common/buildcraft/api/recipes/AssemblyRecipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/buildcraft/api/recipes/AssemblyRecipe.java b/common/buildcraft/api/recipes/AssemblyRecipe.java index 573db282..c9ace7fc 100644 --- a/common/buildcraft/api/recipes/AssemblyRecipe.java +++ b/common/buildcraft/api/recipes/AssemblyRecipe.java @@ -32,7 +32,7 @@ public class AssemblyRecipe { continue; } - if (item.isItemEqual(in)) { + if (StackHelper.instance().isCraftingEquivalent(in, item, true)) { found += item.stackSize; // Adds quantity of stack to amount // found }