aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/api
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-04-16 18:45:11 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-04-16 18:45:11 +1000
commit78e8b17662383079430b3b11407e079e36373724 (patch)
tree489465c6f9494008724d9a92abbfb653cd2ad224 /src/Java/gtPlusPlus/xmod/gregtech/api
parent4361416f7e76d6bf8ef26da28ad7bf5691057af5 (diff)
downloadGT5-Unofficial-78e8b17662383079430b3b11407e079e36373724.tar.gz
GT5-Unofficial-78e8b17662383079430b3b11407e079e36373724.tar.bz2
GT5-Unofficial-78e8b17662383079430b3b11407e079e36373724.zip
+ Made the Large Centrifuge and the Large Electrolyzer process recipes in the same way the Large Chemical Reactor does.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java5
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 65b1de9a23..63393d2081 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
@@ -154,4 +154,9 @@ public interface IGregtech_RecipeAdder {
*/
public boolean addComponentMakerRecipe(ItemStack[] aInputs, FluidStack aFluidInput, ItemStack aOutput1, int aDuration, int aEUt);
+ public boolean addMultiblockCentrifugeRecipe(ItemStack[] aInputs, FluidStack[] aFluidInputs, FluidStack[] aFluidOutputs, ItemStack[] aOutputs, int aDuration, int aEUtick);
+
+ public boolean addMultiblockElectrolyzerRecipe(ItemStack[] aInputs, FluidStack[] aFluidInputs, FluidStack[] aFluidOutputs, ItemStack[] aOutputs, int aDuration, int aEUtick);
+
+
}