diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-26 18:40:32 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-26 18:40:32 +1000 |
commit | 1435e8a664d28389a0220b6fdfb1d3e7980a7f4e (patch) | |
tree | 1cb593ffcc24248fcabcc6c24e5a6991929fac19 /src/Java/gtPlusPlus/core/recipe | |
parent | 2f61b44487964411c9a02dcce70e39bae388805e (diff) | |
download | GT5-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.java | 11 |
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)); |