From 027039d44aaa449d5e4b557a296ba5b68c53d4d2 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 18 May 2025 22:07:56 +0100 Subject: [PATCH] electric greenhouse now uses way less electricity --- kubejs/server_scripts/gregtech/utility.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/gregtech/utility.js b/kubejs/server_scripts/gregtech/utility.js index b34746d18..b8a66896e 100644 --- a/kubejs/server_scripts/gregtech/utility.js +++ b/kubejs/server_scripts/gregtech/utility.js @@ -34,7 +34,7 @@ const generateGreenHouseRecipe = (event, input, fluid_amount, output, id) => { .chancedOutput(input, 7500, 0) .chancedOutput(input, 5000, 0) .duration(36000) // 30 mins - .EUt(72) + .EUt(GTValues.VA[GTValues.LV]) // С удобрением event.recipes.gtceu.greenhouse(`${id}_fertilized`) @@ -46,7 +46,7 @@ const generateGreenHouseRecipe = (event, input, fluid_amount, output, id) => { .chancedOutput(input, 8500, 0) .chancedOutput(input, 6000, 0) .duration(12000) // 10 mins - .EUt(196) + .EUt(GTValues.VA[GTValues.LV]) } const getFillingNBT = (material, amount) => {