Fix Fuel Factory requiring a Parallel Hatch (#1995)

Signed-off-by: TomPlop <tomdidome@gmail.com>
This commit is contained in:
TomPlop 2025-10-09 13:27:33 -04:00 committed by GitHub
parent 280e57a3a7
commit 21935dccf6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -296,7 +296,7 @@ const registerGTCEuMachines = (event) => {
.or(Predicates.abilities(PartAbility.MAINTENANCE).setExactLimit(1))
.or(Predicates.abilities(PartAbility.IMPORT_FLUIDS).setPreviewCount(1))
.or(Predicates.abilities(PartAbility.INPUT_ENERGY).setExactLimit(1))
.or(Predicates.abilities(PartAbility.PARALLEL_HATCH).setExactLimit(1)))
.or(Predicates.abilities(PartAbility.PARALLEL_HATCH).setPreviewCount(1)))
.where('#', Predicates.air())
.where(' ', Predicates.any())
.build()
@ -502,4 +502,4 @@ const registerGTCEuMachines = (event) => {
'tfg:block/casings/machine_casing_mars',
'gtceu:block/machines/thermal_centrifuge')
}
}