From 081aac2a4fd1cde2b6394509803fa8e29da1addf Mon Sep 17 00:00:00 2001 From: Pyritie Date: Mon, 21 Jul 2025 12:53:54 +0100 Subject: [PATCH] reduced recipe duration of biodiesel recipes --- CHANGELOG.md | 1 + .../tfg/recipes.miscellaneous.js | 20 +++++++++---------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d0439660..7c9c6f251 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## [Unreleased] ### Changes +- Reduced duration of biodiesel recipes @Pyritie ### Bug fixes - Fixed butchery knife crafting recipe (#1405) @Pyritie diff --git a/kubejs/server_scripts/tfg/recipes.miscellaneous.js b/kubejs/server_scripts/tfg/recipes.miscellaneous.js index 48ff94d40..79a362ce9 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -550,68 +550,68 @@ function registerTFGMiscellaneousRecipes(event) { .inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfc:alcohols" } })) .inputFluids(Fluid.of('gtceu:seed_oil', 6000)) .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.gtceu.chemical_reactor(`olive_oil_alcohol_biodiesel`) .inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfc:alcohols" } })) .inputFluids(Fluid.of('tfc:olive_oil', 4000)) .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.gtceu.chemical_reactor(`soybean_oil_alcohol_biodiesel`) .inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfc:alcohols" } })) .inputFluids(Fluid.of('firmalife:soybean_oil', 4000)) .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.gtceu.chemical_reactor(`fish_oil_alcohol_biodiesel`) .inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfc:alcohols" } })) .inputFluids(Fluid.of('gtceu:fish_oil', 6000)) .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.gtceu.chemical_reactor(`olive_oil_ethanol_biodiesel`) .inputFluids(Fluid.of('tfc:olive_oil', 4000), Fluid.of('gtceu:ethanol', 1000)) .itemInputs('#forge:tiny_dusts/sodium_hydroxide') .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.LV]) event.recipes.gtceu.chemical_reactor(`olive_oil_methanol_biodiesel`) .inputFluids(Fluid.of('tfc:olive_oil', 4000), Fluid.of('gtceu:methanol', 1000)) .itemInputs('#forge:tiny_dusts/sodium_hydroxide') .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.LV]) event.recipes.gtceu.chemical_reactor(`soybean_oil_ethanol_biodiesel`) .inputFluids(Fluid.of('firmalife:soybean_oil', 4000), Fluid.of('gtceu:ethanol', 1000)) .itemInputs('#forge:tiny_dusts/sodium_hydroxide') .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.LV]) event.recipes.gtceu.chemical_reactor(`soybean_oil_methanol_biodiesel`) .inputFluids(Fluid.of('firmalife:soybean_oil', 4000), Fluid.of('gtceu:methanol', 1000)) .itemInputs('#forge:tiny_dusts/sodium_hydroxide') .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 30) + .duration(20 * 10) .EUt(GTValues.VHA[GTValues.LV]) event.recipes.gtceu.extractor(`rapeseed_oil`) .itemInputs('tfg:rapeseed_product') .outputFluids(Fluid.of('gtceu:seed_oil', 600)) - .duration(20 * 30) + .duration(20 * 5) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.gtceu.extractor(`sunflower_oil`) .itemInputs('tfg:sunflower_product') .outputFluids(Fluid.of('gtceu:seed_oil', 350)) - .duration(20 * 30) + .duration(20 * 5) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.tfc.barrel_sealed(1000)