diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-10-16 19:20:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 19:20:00 +0200 |
commit | 27116e95cbd5433ac4b630ef58c0086f549e0a6f (patch) | |
tree | 7ef2c369048cc649237be28f97c559a8334dbfed /src/main/java/gregtech/api/interfaces/internal | |
parent | 751d462553d1fd981c5a15899cd35f06548ccdf6 (diff) | |
parent | 2deded32f281dad573e0101917bd71ba6a9290df (diff) | |
download | GT5-Unofficial-27116e95cbd5433ac4b630ef58c0086f549e0a6f.tar.gz GT5-Unofficial-27116e95cbd5433ac4b630ef58c0086f549e0a6f.tar.bz2 GT5-Unofficial-27116e95cbd5433ac4b630ef58c0086f549e0a6f.zip |
Merge pull request #670 from GTNewHorizons/Silicon-Alu-Autoclave-update
Silicon alu autoclave update
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/internal')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java index 2490b37eb1..4bf8b211e0 100644 --- a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java +++ b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java @@ -586,6 +586,8 @@ public interface IGT_RecipeAdder { */ boolean addChemicalBathRecipe(ItemStack aInput, FluidStack aBathingFluid, ItemStack aOutput1, ItemStack aOutput2, ItemStack aOutput3, int[] aChances, int aDuration, int aEUt); + boolean addChemicalBathRecipe(ItemStack aInput, FluidStack aBathingFluid, FluidStack aFluidOutput, ItemStack aOutput1, ItemStack aOutput2, ItemStack aOutput3, int[] aChances, int aDuration, int aEUt); + /** * Adds a Recipe for the Electromagnetic Separator */ @@ -617,6 +619,8 @@ public interface IGT_RecipeAdder { boolean addAutoclaveSpaceRecipe(ItemStack aInput, ItemStack aCircuit, FluidStack aFluid, ItemStack aOutput, int aChance, int aDuration, int aEUt, boolean aCleanroom); + boolean addAutoclave4Recipe(ItemStack aInput, ItemStack aCircuit, FluidStack aFluidIn, FluidStack aFluidOut, ItemStack[] aOutputs, int[] aChances, int aDuration, int aEUt, boolean aCleanroom); + /** * Adds a Recipe for the Mixer */ @@ -723,4 +727,6 @@ public interface IGT_RecipeAdder { * @return true if the Sound got added, otherwise false. */ boolean addSonictronSound(ItemStack aItemStack, String aSoundName); + + boolean addChemicalBathRecipe(ItemStack aInput, FluidStack aBathingFluid, ItemStack aOutput1, ItemStack aOutput2, ItemStack aOutput3, FluidStack aFluidOutput, int[] aChances, int aDuration, int aEUt); } |