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,8 +1,8 @@
LootJS.modifiers(event => {
LootJS.modifiers((event) => {
event
.addEntityLootModifier("minecraft:blaze")
.replaceLoot("minecraft:blaze_rod", "gtceu:sulfur_dust", true)
.addEntityLootModifier("minecraft:blaze")
.replaceLoot("minecraft:blaze_rod", "gtceu:sulfur_dust", true);
event
.addEntityLootModifier("minecraft:enderman")
.replaceLoot("minecraft:ender_pearl", "gtceu:ender_pearl_dust", true)
});
.addEntityLootModifier("minecraft:enderman")
.replaceLoot("minecraft:ender_pearl", "gtceu:ender_pearl_dust", true);
});