This commit is contained in:
Shiroyasha 2025-09-14 21:22:24 +03:00
commit a956daf8e2
Signed by: shiroyashik
GPG key ID: E4953D3940D7860A
2351 changed files with 163047 additions and 0 deletions

View file

@ -0,0 +1,17 @@
/** Reverts the GTM 1.4.1 hatch recipe nerf for NM and HM */
ServerEvents.recipes(event => {
if (doHatchRevert) {
event.remove({ id: /item_import_bus_/ })
event.remove({ id: /item_export_bus_/ })
event.remove({ id: /fluid_hatch_/, type: "gtceu:assembler" })
event.remove({ id: /fluid_export_hatch_/, type: "gtceu:assembler" })
let hatchtier = ["ulv", "lv", "mv", "hv", "ev", "iv", "luv", "zpm", "uv", "uhv", "uev", "uiv", "max"]
hatchtier.forEach(volt => {
event.shaped(`gtceu:${volt}_input_bus`, [" S ", " T ", " "], { S: "#forge:chests/wooden", T: `gtceu:${volt}_machine_hull` })
event.shaped(`gtceu:${volt}_output_bus`, [" ", " T ", " S "], { S: "#forge:chests/wooden", T: `gtceu:${volt}_machine_hull` })
event.shaped(`gtceu:${volt}_input_hatch`, [" S ", " T ", " "], { S: "#forge:glass", T: `gtceu:${volt}_machine_hull` })
event.shaped(`gtceu:${volt}_output_hatch`, [" ", " T ", " S "], { S: "#forge:glass", T: `gtceu:${volt}_machine_hull` })
})
}
})