diff --git a/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js b/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js index d960d60b3..a6826317b 100644 --- a/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js +++ b/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js @@ -218,13 +218,17 @@ function registerTFGEarlyGasRecipes(event) { .inputFluids(Fluid.of('tfg:syngas', 1)) .EUt(-(32)) .duration(20*0.2) - + .dimension('minecraft:overworld') + .dimension('minecraft:the_nether') + // Reformate Gas event.recipes.gtceu.gas_turbine('tfg:reformate_gas') // Gas Turbine .inputFluids(Fluid.of('tfg:reformate_gas', 1)) .EUt(-(32)) .duration(20*0.6) + .dimension('minecraft:overworld') + .dimension('minecraft:the_nether') // BTX Fuel @@ -232,6 +236,8 @@ function registerTFGEarlyGasRecipes(event) { .inputFluids(Fluid.of('tfg:btx_fuel', 1)) .EUt(-(32)) .duration(20*2.6) + .dimension('minecraft:overworld') + .dimension('minecraft:the_nether') //#endregion @@ -310,7 +316,8 @@ function registerTFGEarlyGasRecipes(event) { .outputFluids(Fluid.of('tfg:btx_fuel', 48000)) .duration(20*6) .EUt(GTValues.VA[GTValues.IV]) - + .circuit(24) + // Loop event.recipes.gtceu.macerator('tfg:catalyser_power') @@ -365,4 +372,4 @@ function registerTFGEarlyGasRecipes(event) { -} \ No newline at end of file +}