From a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 6 Sep 2016 14:43:38 +1000 Subject: + Made Energy Crystal have a different recipe every day. (There is about 300 possible permutations) % Tried adding another recipe handler for the dehydrator. > This one combines the mixer input, fluid input, fluid output, with a sifter multi output and chance. --- .../xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/miscutil/xmod/gregtech/api/interfaces/internal') diff --git a/src/Java/miscutil/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java b/src/Java/miscutil/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java index 06c6dc42e6..10e3b32b58 100644 --- a/src/Java/miscutil/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java +++ b/src/Java/miscutil/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java @@ -50,6 +50,6 @@ public interface IGregtech_RecipeAdder { public boolean addDehydratorRecipe(ItemStack aInput, FluidStack aFluid, ItemStack[] aOutputItems, int aDuration, int aEUt); public boolean addDehydratorRecipe(ItemStack aItemA, ItemStack aItemB, ItemStack[] aOutputItems, int aDuration, int aEUt); public boolean addDehydratorRecipe(ItemStack aItemA, ItemStack aItemB, FluidStack aFluid, ItemStack[] aOutputItems, FluidStack aOutputFluid, int aDuration, int aEUt); - + public boolean addDehydratorRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack[] aOutputItems, int[] aChances, int aDuration, int aEUt); } -- cgit