diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-05 00:50:58 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-05 00:50:58 +1000 |
commit | 6ee301d80e33bf1af95a2edafe3621e090225a43 (patch) | |
tree | 089c9f5aaa9390d21784111184e2dc6790a30023 /src/Java/miscutil/xmod/gregtech/api/interfaces/internal | |
parent | f04f97e1309dccfdf442ddf7a64a00aeed8e9628 (diff) | |
download | GT5-Unofficial-6ee301d80e33bf1af95a2edafe3621e090225a43.tar.gz GT5-Unofficial-6ee301d80e33bf1af95a2edafe3621e090225a43.tar.bz2 GT5-Unofficial-6ee301d80e33bf1af95a2edafe3621e090225a43.zip |
+ Added Lithium Carbonate recipes.
+ Added some fluid textures.
% Changed names to be mixes on some fluids.
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/api/interfaces/internal')
-rw-r--r-- | src/Java/miscutil/xmod/gregtech/api/interfaces/internal/IGregtech_RecipeAdder.java | 1 |
1 files changed, 1 insertions, 0 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 32d370d4b1..06c6dc42e6 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 @@ -46,6 +46,7 @@ public interface IGregtech_RecipeAdder { * @return true if the Recipe got added, otherwise false. */ + public boolean addDehydratorRecipe(FluidStack aFluid, FluidStack aOutputFluid, ItemStack[] aOutputItems, int aDuration, int aEUt); 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); |