aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-26 18:40:32 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-26 18:40:32 +1000
commit1435e8a664d28389a0220b6fdfb1d3e7980a7f4e (patch)
tree1cb593ffcc24248fcabcc6c24e5a6991929fac19 /src/Java/gtPlusPlus/core/recipe
parent2f61b44487964411c9a02dcce70e39bae388805e (diff)
downloadGT5-Unofficial-1435e8a664d28389a0220b6fdfb1d3e7980a7f4e.tar.gz
GT5-Unofficial-1435e8a664d28389a0220b6fdfb1d3e7980a7f4e.tar.bz2
GT5-Unofficial-1435e8a664d28389a0220b6fdfb1d3e7980a7f4e.zip
% Changed Blast Smelter Recipe addition again. Input fluids should now be supported.
> This allows more alloys requiring oxygen or argon to be produced.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
index f41d2fd8a3..ac0ab3bd61 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
@@ -48,9 +48,20 @@ public class RECIPES_GREGTECH {
centrifugeRecipes();
benderRecipes();
cyclotronRecipes();
+ blastSmelterRecipes();
addFuels();
}
+ private static void blastSmelterRecipes() {
+ /*CORE.RA.addBlastSmelterRecipe(
+ new ItemStack[]{},
+ FluidUtils.getFluidStack(fluidName, amount),
+ 0,
+ aDuration,
+ aEUt)*/
+
+ }
+
private static void fluidcannerRecipes() {
GT_Values.RA.addFluidCannerRecipe(ItemUtils.getSimpleStack(Items.glass_bottle), ItemUtils.getSimpleStack(ModItems.itemSulfuricPotion), FluidUtils.getFluidStack("sulfuricacid", 250), null);
GT_Values.RA.addFluidCannerRecipe(ItemUtils.getSimpleStack(ModItems.itemSulfuricPotion), ItemUtils.getSimpleStack(Items.glass_bottle), null, FluidUtils.getFluidStack("sulfuricacid", 250));