diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f45f22e..7e0b83303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ - Added Invar as a TFC-compatible metal (#1496) @Pyritie - Added extruder/curving press recipes for Tuyeres (#1499) @Pyritie - Added recipes for more train tracks @Pyritie +- Added a recipe to get Wood Gas for your food processor in LV (#1491) @Pyritie ### Bug fixes - Some bug fixes for the electric refrigerators @gustovafing - Fixed not being able to craft fine wire in a coiling machine for materials that didn't also have normal wire @Pyritie diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index a395c07d4..efee1baf9 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -1304,4 +1304,9 @@ const registerGTCEURecipes = (event) => { F: 'gtceu:stainless_steel_huge_fluid_pipe' }).id('tfg:shaped/large_centrifuge') + event.recipes.gtceu.extractor('tfg:logs_to_wood_gas') + .itemInputs('#minecraft:logs_that_burn') + .outputFluids('gtceu:wood_gas 100') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) }