diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-25 18:34:40 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-25 18:34:40 +1000 |
commit | c2310a3e78c2980a5924c007eca2b3e192bc3fd8 (patch) | |
tree | 4b0a3da3433d5833b4126cd02f957b8a3d6e7c27 /src/Java/gtPlusPlus/core/recipe | |
parent | 35de0bbb41bd872800e62f34e02f4d859405d750 (diff) | |
download | GT5-Unofficial-c2310a3e78c2980a5924c007eca2b3e192bc3fd8.tar.gz GT5-Unofficial-c2310a3e78c2980a5924c007eca2b3e192bc3fd8.tar.bz2 GT5-Unofficial-c2310a3e78c2980a5924c007eca2b3e192bc3fd8.zip |
% 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.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 6 |
1 files changed, 6 insertions, 0 deletions
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."); |