-Add dimension requirement (oupsie)
-Add circuit 24 to BTX (CRITICAL CHANGE)

Signed-off-by: TomPlop <tomdidome@gmail.com>
This commit is contained in:
TomPlop 2025-12-24 11:49:29 -05:00 committed by GitHub
parent de06762259
commit bc89e06240
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {
}
}