mirror of
https://github.com/xHyroM/aetheria.git
synced 2024-11-10 01:58:06 +01:00
13 lines
388 B
JavaScript
Executable file
Vendored
13 lines
388 B
JavaScript
Executable file
Vendored
// Modifies the recipes for doors to match the Gregified Integrations recipes
|
|
|
|
ServerEvents.recipes((event) => {
|
|
[
|
|
"ad_astra:aeronos_door",
|
|
"ad_astra:strophar_door",
|
|
"ad_astra:glacian_door",
|
|
].forEach((d) => gregifyDoorRecipe(event, "<identifier>:<name>", d));
|
|
|
|
gregifyDoorRecipe(event, "<identifier>:<name>", "ad_astra:steel_door", [
|
|
"gtceu:steel_plate",
|
|
]);
|
|
});
|