Fixing hashes for the last time

(It won't be the last time)
This commit is contained in:
Spencer
2023-12-22 09:47:08 -05:00
committed by GitHub
parent 4a2b39f106
commit b960dee64e
117 changed files with 3466 additions and 3466 deletions

View File

@@ -1,20 +1,20 @@
ServerEvents.recipes((event) => {
const patpros = [
["hv", "stainless_steel", 1],
["ev", "titanium", 4],
["iv", "tungsten_steel", 16],
];
patpros.forEach((tier) => {
let interProv = (materialType, blockType) => {
event.shaped(`${tier[2]}x ${blockType}`, ["PGP", "ACF", "PGP"], {
P: `#forge:plates/${tier[1]}`,
G: materialType,
A: "ae2:annihilation_core",
F: "ae2:formation_core",
C: `gtceu:${tier[0]}_conveyor_module`,
});
};
event.remove({ id: "ae2:network/crafting/molecular_assembler" });
interProv("ae2:quartz_glass", "ae2:molecular_assembler");
});
});
ServerEvents.recipes((event) => {
const patpros = [
["hv", "stainless_steel", 1],
["ev", "titanium", 4],
["iv", "tungsten_steel", 16],
];
patpros.forEach((tier) => {
let interProv = (materialType, blockType) => {
event.shaped(`${tier[2]}x ${blockType}`, ["PGP", "ACF", "PGP"], {
P: `#forge:plates/${tier[1]}`,
G: materialType,
A: "ae2:annihilation_core",
F: "ae2:formation_core",
C: `gtceu:${tier[0]}_conveyor_module`,
});
};
event.remove({ id: "ae2:network/crafting/molecular_assembler" });
interProv("ae2:quartz_glass", "ae2:molecular_assembler");
});
});