From 69cde26b65b888b2b18b26917dbf477e73cdae9f Mon Sep 17 00:00:00 2001 From: Pyritie Date: Mon, 19 Jan 2026 23:23:22 +0000 Subject: [PATCH] reduced required rpm for the VI centrifuge because it works badly on low tps servers --- kubejs/server_scripts/tfg/mars/recipes.mars.js | 1 + .../tfg/ores_and_materials/recipes.material_ores.js | 2 ++ kubejs/server_scripts/tfg/primitive/recipes.cloth.js | 2 ++ 3 files changed, 5 insertions(+) diff --git a/kubejs/server_scripts/tfg/mars/recipes.mars.js b/kubejs/server_scripts/tfg/mars/recipes.mars.js index 34ee5fee4..08bc07077 100644 --- a/kubejs/server_scripts/tfg/mars/recipes.mars.js +++ b/kubejs/server_scripts/tfg/mars/recipes.mars.js @@ -49,6 +49,7 @@ function registerTFGMarsRecipes(event) { event.recipes.vintageimprovements.centrifugation([Fluid.of('tfg:semiheavy_water', 500), '2x #forge:tiny_dusts/ammonium_chloride'], Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) .processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .minimalRPM(32) .id('tfg:vi/centrifuge_mars_semiheavy_water') event.recipes.gtceu.distillery('mars_semiheavy_water') diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_ores.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_ores.js index b6c81368a..f2a38a7ec 100644 --- a/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_ores.js +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_ores.js @@ -404,6 +404,7 @@ function processImpureDust(event, material) { [dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)], impureDustItem) .processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .minimalRPM(32) .id(`tfg:vi/centrifuge/${materialName}_dust_from_impure`) // Dropping in water @@ -455,6 +456,7 @@ function processPureDust(event, material) { [dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)], pureDustItem) .processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .minimalRPM(32) .id(`tfg:vi/centrifuge/${materialName}_dust_from_pure`) // Dropping in water diff --git a/kubejs/server_scripts/tfg/primitive/recipes.cloth.js b/kubejs/server_scripts/tfg/primitive/recipes.cloth.js index 624402e90..725c86449 100644 --- a/kubejs/server_scripts/tfg/primitive/recipes.cloth.js +++ b/kubejs/server_scripts/tfg/primitive/recipes.cloth.js @@ -196,10 +196,12 @@ function registerTFGClothRecipes(event) { event.recipes.vintageimprovements.centrifugation(['2x tfg:flax_line', 'tfg:flax_tow', 'tfc:groundcover/humus'], 'tfg:flax_product') .processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .minimalRPM(32) .id('tfg:vi_seperate_flax') event.recipes.vintageimprovements.centrifugation(['18x tfg:flax_line', '9x tfg:flax_tow', '9x tfc:groundcover/humus'], 'tfg:flax_bundle') .processingTime(1500 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .minimalRPM(32) .id('tfg:vi_seperate_flax_from_bundle') // #endregion