From 1435e8a664d28389a0220b6fdfb1d3e7980a7f4e Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 26 Sep 2017 18:40:32 +1000 Subject: % Changed Blast Smelter Recipe addition again. Input fluids should now be supported. > This allows more alloys requiring oxygen or argon to be produced. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/Java/gtPlusPlus/core') 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)); -- cgit