From f75ac9e65212f7f5ed71d89a6bd00506a1f89240 Mon Sep 17 00:00:00 2001 From: BoyNextDoor <130379681+8oyNextDoor@users.noreply.github.com> Date: Sun, 12 Jan 2025 19:47:20 +0300 Subject: [PATCH] Update recipes.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Исправил опечатку в температуре кипения морской воды для рецепта маленькой кучки соли с 1000 на 100 (Fixed a typo in salt water boiling recipe's temperature for small salt pile - 1000 > 100) Signed-off-by: BoyNextDoor <130379681+8oyNextDoor@users.noreply.github.com> --- kubejs/server_scripts/tfc/recipes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 2e35f8952..3313ec992 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -3362,7 +3362,7 @@ const registerTFCRecipes = (event) => { .id('tfg:smelting/fireclay_brick') // Выпаривание соли - event.recipes.tfc.pot([], Fluid.of('tfc:salt_water', 625), 300, 1000) + event.recipes.tfc.pot([], Fluid.of('tfc:salt_water', 625), 300, 100) .itemOutput('gtceu:small_salt_dust') .id('tfg:tfc/pot/salt')