From e64c8bc6aa427eecccbb00ee1f93efea10128741 Mon Sep 17 00:00:00 2001 From: TomPlop Date: Sat, 23 Aug 2025 17:00:35 -0400 Subject: [PATCH] Fix Board rework (#1681) * fix board * remove from tag * more update * last changes * Add new quests * fix the weird file * Fixes * fix quest optional * fix duplicate recipe * more fix * Fix fur for insulation * an other fix --- .../server_scripts/gregtech/recipes.machines.js | 16 ++++++++-------- .../server_scripts/tfg/recipes.miscellaneous.js | 3 ++- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/kubejs/server_scripts/gregtech/recipes.machines.js b/kubejs/server_scripts/gregtech/recipes.machines.js index 5e418a2f5..4938903fc 100644 --- a/kubejs/server_scripts/gregtech/recipes.machines.js +++ b/kubejs/server_scripts/gregtech/recipes.machines.js @@ -915,18 +915,18 @@ function registerGTCEuMachineRecipes(event) { .duration(100) .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.chemical_bath('gtceu:bath_high_density_treated_fiberboard') - .itemInputs('1x gtceu:wood_plate') + event.recipes.gtceu.chemical_bath('gtceu:bath_treated_wood_dust') + .itemInputs('#tfg:wood_dusts') .inputFluids(Fluid.of('gtceu:creosote', 50)) - .itemOutputs('tfg:high_density_treated_fiberboard') + .itemOutputs('gtceu:treated_wood_dust') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.compressor('tfg:chemical_treated_wood') - .itemInputs('#tfg:wood_dusts') - .itemOutputs('gtceu:treated_wood_dust') - .duration(200) - .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.compressor('tfg:compressed_treated_chipboard_composite') + .itemInputs('tfg:treated_chipboard_composite') + .itemOutputs('tfg:high_density_treated_fiberboard') + .duration(200) + .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.assembler('tfg:resin_circuit_assembler') .itemInputs('gtceu:wood_plate', '2x gtceu:sticky_resin') diff --git a/kubejs/server_scripts/tfg/recipes.miscellaneous.js b/kubejs/server_scripts/tfg/recipes.miscellaneous.js index 3f96d316b..17ea21a87 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -1161,7 +1161,8 @@ function registerTFGMiscellaneousRecipes(event) { .duration(80) .EUt(GTValues.VA[GTValues.IV]) event.recipes.gtceu.mixer('tfg:aes_polyurethane_electric_only') - .itemInputs('tfg:aes_compressed_wool', '2x tfg:sniffer_wool','#forge:dusts/methylene_diphenyl_diisocyanate') + .itemInputs('tfg:aes_compressed_wool', //'2x tfg:sniffer_wool' REVERT UNTIL MARS, + '#forge:dusts/methylene_diphenyl_diisocyanate') .inputFluids(Fluid.of('gtceu:diethylenetriamine', 250), Fluid.of('gtceu:acetone', 1000)) .itemOutputs('tfg:aes_polyurethane') .duration(80)