cleanup scripts for launch

fixed syntax + unified unnecessary files
This commit is contained in:
mina
2023-12-17 22:42:58 +00:00
parent 1012487e69
commit efdda8cedd
35 changed files with 922 additions and 828 deletions

View File

@@ -1,23 +1,15 @@
ServerEvents.recipes(event => {
event.remove({id: "toolbelt:belt"})
event.shaped("toolbelt:belt", [
'SLS',
'C C',
'LIL'
] , {
ServerEvents.recipes((event) => {
event.remove({ id: "toolbelt:belt" });
event.shaped("toolbelt:belt", ["SLS", "C C", "LIL"], {
S: "minecraft:string",
L: "minecraft:leather",
I: "#forge:plates/steel",
C: "#forge:screws/steel"
})
event.remove({id: "toolbelt:pouch"})
event.shaped("toolbelt:pouch", [
' G ',
'LSL',
' '
] , {
C: "#forge:screws/steel",
});
event.remove({ id: "toolbelt:pouch" });
event.shaped("toolbelt:pouch", [" G ", "LSL", " "], {
G: "#forge:rings/gold",
L: "minecraft:leather",
S: "#forge:plates/steel"
})
})
S: "#forge:plates/steel",
});
});