From 243346fb454cfeb1a9313ef907243a8a39af8849 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Wed, 18 Jul 2018 04:47:48 +1000 Subject: + Added Circuit Assembler mode to the Large Auto Crafter (LAC) + Added ability for Assembler recipes to use OreDictionary. % Changed recipe for Project Table, LAC Controller & Casings to now use TungstenSteel instead of Stainless Steel. % Changed recipe for all PSS Redox Cells. --- .../xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java b/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java index 38e27c9bb2..c442e4f7d4 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java @@ -160,4 +160,9 @@ public interface IGregtech_RecipeAdder { public boolean addAdvancedFreezerRecipe(ItemStack[] aInputs, FluidStack[] aFluidInputs, FluidStack[] aFluidOutputs, ItemStack[] aOutputs, int[] aChances, int aDuration, int aEUtick, int aSpecial); + + public boolean addAssemblerRecipeWithOreDict(Object aInput1, int aAmount1, Object aInput2, int aAmount2, ItemStack aOutput, int a1, int a2); + public boolean addAssemblerRecipeWithOreDict(Object aInput1, int aAmount1, Object aInput2, int aAmount2, FluidStack aInputFluid, ItemStack aOutput, int a1, int a2); + + } -- cgit