chore: fix formatting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
LordMZTE 2022-07-24 14:05:21 +02:00
parent e1dbfd960e
commit ecffd904c0
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -1,8 +1,8 @@
function recipes(ev) { function recipes(ev) {
ev.remove({output: "tempad:tempad"}); ev.remove({output: "tempad:tempad"});
// conflicts with copper nuggets // conflicts with copper nuggets
ev.remove({output: "redstonebits:copper_button"}); ev.remove({output: "redstonebits:copper_button"});
ev.shaped("redstonebits:copper_button", [ ev.shaped("redstonebits:copper_button", [
"CC", "CC",
@ -11,29 +11,29 @@ function recipes(ev) {
C: "#c:copper_ingots" C: "#c:copper_ingots"
}); });
ev.shaped("tempad:tempad", [ ev.shaped("tempad:tempad", [
"GGG", "GGG",
"PCD", "PCD",
"GGG" "GGG"
], { ], {
G: "#c:gold_ingots", G: "#c:gold_ingots",
P: "modern_industrialization:processing_unit", P: "modern_industrialization:processing_unit",
C: "powah:ender_core", C: "powah:ender_core",
D: "techreborn:digital_display" D: "techreborn:digital_display"
}); });
ev.shaped("tempad:he_who_remains_tempad", [ ev.shaped("tempad:he_who_remains_tempad", [
"UTD", "UTD",
"NSN", "NSN",
"DRU" "DRU"
], { ], {
U: "dimdoors:unravelled_block", U: "dimdoors:unravelled_block",
N: "#c:netherite_ingots", N: "#c:netherite_ingots",
D: "minecraft:deepslate", D: "minecraft:deepslate",
T: "tempad:tempad", T: "tempad:tempad",
R: "blockus:legacy_nether_reactor_core", R: "blockus:legacy_nether_reactor_core",
S: "minecraft:nether_star" S: "minecraft:nether_star"
}); });
} }
onEvent("recipes", recipes); onEvent("recipes", recipes);