From c2310a3e78c2980a5924c007eca2b3e192bc3fd8 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Mon, 25 Sep 2017 18:34:40 +1000 Subject: % Sulfuric potions now do no damage to anyone wearing a hazmat suit. $ Fixed entity IDs during registration. $ Fixed Sulfuric Potion not rendering. $ Fixed Fluid Canner recipes for Sulfuric potion not registering. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Java/gtPlusPlus/core/recipe') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 603c028bf7..f41d2fd8a3 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -31,6 +31,7 @@ public class RECIPES_GREGTECH { cokeOvenRecipes(); matterFabRecipes(); assemblerRecipes(); + fluidcannerRecipes(); distilleryRecipes(); extractorRecipes(); fluidExtractorRecipes(); @@ -50,6 +51,11 @@ public class RECIPES_GREGTECH { addFuels(); } + 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)); + } + private static void cokeOvenRecipes(){ Utils.LOG_INFO("Loading Recipes for Industrial Coking Oven."); -- cgit