diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-07-18 04:47:48 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-07-18 04:47:48 +1000 |
commit | 243346fb454cfeb1a9313ef907243a8a39af8849 (patch) | |
tree | a2ae0511623403daf62e0d8ad73009531ff57d0e /src/Java/gtPlusPlus/xmod/gregtech/api | |
parent | 4da4a060bde0c9cc41142da5ba77b20e9fc4cb88 (diff) | |
download | GT5-Unofficial-243346fb454cfeb1a9313ef907243a8a39af8849.tar.gz GT5-Unofficial-243346fb454cfeb1a9313ef907243a8a39af8849.tar.bz2 GT5-Unofficial-243346fb454cfeb1a9313ef907243a8a39af8849.zip |
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java | 5 |
1 files changed, 5 insertions, 0 deletions
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); + + } |