aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorvovaksenov <86674724+vovaksenov@users.noreply.github.com>2021-08-09 20:22:54 +0300
committerGitHub <noreply@github.com>2021-08-09 20:22:54 +0300
commit7e8b5e499a75c1a23dec59d660fb2b77549b3fdc (patch)
tree7eebe902be19ee693d9463034b1cb0bc9b13f889 /src/Java/gtPlusPlus/core
parent16754e3b4478eff74611579403a56993126e870f (diff)
downloadGT5-Unofficial-7e8b5e499a75c1a23dec59d660fb2b77549b3fdc.tar.gz
GT5-Unofficial-7e8b5e499a75c1a23dec59d660fb2b77549b3fdc.tar.bz2
GT5-Unofficial-7e8b5e499a75c1a23dec59d660fb2b77549b3fdc.zip
Biomass recipes for Rainforest Oak Sapling
Added for consistency: sapling + water / honey / juice = biomass. Based my code on the code used in this project, so I hope there are no problems with it. I can't test it myself as I don't know how to build a jar file out of this, sorry.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-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() {