From 095849edb0ead6af6a201f851739ba371d457e63 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 6 Dec 2025 00:23:24 +0000 Subject: [PATCH] fixed some inconsistencies with moon/mars deco plant EGH recipes --- kubejs/server_scripts/tfg/mars/recipes.mars.js | 2 +- kubejs/server_scripts/tfg/moon/recipes.plants.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfg/mars/recipes.mars.js b/kubejs/server_scripts/tfg/mars/recipes.mars.js index 5c995e9f8..1e3f8e1b4 100644 --- a/kubejs/server_scripts/tfg/mars/recipes.mars.js +++ b/kubejs/server_scripts/tfg/mars/recipes.mars.js @@ -236,7 +236,7 @@ function registerTFGMarsRecipes(event) { const recipeId = `greenhouse_${itemId.replace(':', '_')}`; generateGreenHouseRecipe(event, itemId, 'tfg:semiheavy_ammoniacal_water', 8000, `8x ${itemId}`, - recipeId, 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]); + recipeId, 'ad_astra:mars', 8, itemId, GTValues.VA[GTValues.LV]); }); generateGreenHouseRecipe(event, '8x betterend:amber_root_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, diff --git a/kubejs/server_scripts/tfg/moon/recipes.plants.js b/kubejs/server_scripts/tfg/moon/recipes.plants.js index fd5bfdb5b..38c5e8f8b 100644 --- a/kubejs/server_scripts/tfg/moon/recipes.plants.js +++ b/kubejs/server_scripts/tfg/moon/recipes.plants.js @@ -97,6 +97,7 @@ function registerTFGMoonPlantRecipes(event) { .itemOutputs(`8x ${element.id}`) .chancedOutput(element.id, 750, 0) .chancedOutput(element.id, 500, 0) + .chancedOutput(element.id, 750, 0) .duration(36000) // 30 mins .circuit(1) .EUt(GTValues.VA[GTValues.MV]) @@ -108,6 +109,7 @@ function registerTFGMoonPlantRecipes(event) { .itemOutputs(`8x ${element.id}`) .chancedOutput(element.id, 4000, 0) .chancedOutput(element.id, 3000, 0) + .chancedOutput(element.id, 4000, 0) .duration(12000) // 30 mins .circuit(2) .EUt(GTValues.VA[GTValues.MV])