aboutsummaryrefslogtreecommitdiff
path: root/src/Java
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-08-09 21:31:28 +0200
committerGitHub <noreply@github.com>2021-08-09 21:31:28 +0200
commita4662e65865e0d2d34349b104242335a61af447e (patch)
tree7eebe902be19ee693d9463034b1cb0bc9b13f889 /src/Java
parent16754e3b4478eff74611579403a56993126e870f (diff)
parent7e8b5e499a75c1a23dec59d660fb2b77549b3fdc (diff)
downloadGT5-Unofficial-a4662e65865e0d2d34349b104242335a61af447e.tar.gz
GT5-Unofficial-a4662e65865e0d2d34349b104242335a61af447e.tar.bz2
GT5-Unofficial-a4662e65865e0d2d34349b104242335a61af447e.zip
Merge pull request #21 from vovaksenov/exp
Biomass recipes for Rainforest Oak Sapling
Diffstat (limited to 'src/Java')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
index f5065f887e..f361fc8025 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
@@ -860,7 +860,10 @@ public class RECIPES_GREGTECH {
private static void breweryRecipes() {
CORE.RA.addBrewingRecipe(14, EnchantingUtils.getMobEssence(100), EnchantingUtils.getLiquidXP(1332), 100, 120, false);
- CORE.RA.addBrewingRecipe(14, EnchantingUtils.getLiquidXP(1332), EnchantingUtils.getMobEssence(100), 100, 120, false);
+ CORE.RA.addBrewingRecipe(14, EnchantingUtils.getLiquidXP(1332), EnchantingUtils.getMobEssence(100), 100, 120, false);
+ CORE.RA.addBrewingRecipe(ItemUtils.getSimpleStack(BOP_Block_Registrator.sapling_Rainforest), FluidUtils.getFluidStack("water", 100), FluidUtils.getFluidStack("biomass", 100), 1200, 3, false);
+ CORE.RA.addBrewingRecipe(ItemUtils.getSimpleStack(BOP_Block_Registrator.sapling_Rainforest), FluidUtils.getFluidStack("honey", 100), FluidUtils.getFluidStack("biomass", 150), 1200, 3, false);
+ CORE.RA.addBrewingRecipe(ItemUtils.getSimpleStack(BOP_Block_Registrator.sapling_Rainforest), FluidUtils.getFluidStack("juice", 100), FluidUtils.getFluidStack("biomass", 150), 1200, 3, false);
}
private static void cuttingSawRecipes() {