init
This commit is contained in:
commit
d8d0e9d536
2567 changed files with 167778 additions and 0 deletions
17
kubejs/server_scripts/fixes_tweaks/hatch_revert.js
Normal file
17
kubejs/server_scripts/fixes_tweaks/hatch_revert.js
Normal 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` })
|
||||
})
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue