From 5200434e6d295fb90a35934359b966ad3d930f54 Mon Sep 17 00:00:00 2001 From: EliAyase Date: Sat, 27 Apr 2024 14:45:09 +0800 Subject: [PATCH] Fix spared parts molten product inconsistency between GT and TFC Fix spared parts molten product inconsistency between GT and TFC. Now 1 bolt can get 18mB molten metal, 1 screw can get 16mB molten metal, and 1 ring can get 36mB molten metal, suited with GT. Signed-off-by: EliAyase --- kubejs/server_scripts/tfc/recipes.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 9d1058955..df0f5f6b2 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -502,7 +502,7 @@ const registerTFCRecipes = (event) => { // Болт -> Металл event.recipes.tfc.heating(boltItem, tfcProperty.getMeltTemp()) - .resultFluid(Fluid.of(outputMaterial.getFluid(), 36)) + .resultFluid(Fluid.of(outputMaterial.getFluid(), 18)) .id(`tfc:heating/metal/${material.getName()}_bolt`) // Стержень -> Болт @@ -518,7 +518,7 @@ const registerTFCRecipes = (event) => { // Винт -> Металл event.recipes.tfc.heating(screwItem, tfcProperty.getMeltTemp()) - .resultFluid(Fluid.of(outputMaterial.getFluid(), 72)) + .resultFluid(Fluid.of(outputMaterial.getFluid(), 16)) .id(`tfc:heating/metal/${material.getName()}_screw`) // Стержень -> Винт @@ -533,7 +533,7 @@ const registerTFCRecipes = (event) => { // Кольцо -> Металл event.recipes.tfc.heating(ringItem, tfcProperty.getMeltTemp()) - .resultFluid(Fluid.of(outputMaterial.getFluid(), 72)) + .resultFluid(Fluid.of(outputMaterial.getFluid(), 36)) .id(`tfc:heating/metal/${material.getName()}_ring`) // Стержень -> Кольцо