diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-06 14:43:38 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-06 14:43:38 +1000 |
commit | a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b (patch) | |
tree | 735e07e76befa35ea237e57883f067cd402f9654 /src/Java/miscutil/xmod/gregtech/api | |
parent | e12c5cafb9485ae1f62eeeed3a795d239e85cba5 (diff) | |
download | GT5-Unofficial-a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b.tar.gz GT5-Unofficial-a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b.tar.bz2 GT5-Unofficial-a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b.zip |
+ 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.
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/api')
-rw-r--r-- | src/Java/miscutil/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |