From b90e389e86487b51e7654980b71406a080dad707 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 1 Jun 2025 21:19:07 +0100 Subject: [PATCH] existing greenhouse recipes now require to be on earth --- kubejs/server_scripts/gregtech/utility.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubejs/server_scripts/gregtech/utility.js b/kubejs/server_scripts/gregtech/utility.js index b8a66896e..9037440ec 100644 --- a/kubejs/server_scripts/gregtech/utility.js +++ b/kubejs/server_scripts/gregtech/utility.js @@ -35,6 +35,7 @@ const generateGreenHouseRecipe = (event, input, fluid_amount, output, id) => { .chancedOutput(input, 5000, 0) .duration(36000) // 30 mins .EUt(GTValues.VA[GTValues.LV]) + .dimension('minecraft:overworld') // С удобрением event.recipes.gtceu.greenhouse(`${id}_fertilized`) @@ -47,6 +48,7 @@ const generateGreenHouseRecipe = (event, input, fluid_amount, output, id) => { .chancedOutput(input, 6000, 0) .duration(12000) // 10 mins .EUt(GTValues.VA[GTValues.LV]) + .dimension('minecraft:overworld') } const getFillingNBT = (material, amount) => {