Files
GregTech-Modern-Community-Pack/kubejs/server_scripts/vanilla/loot_drops.js
mina 70744cfd93 script polishes
- removed crafting cover in recipes as it's uncraftable (ironic)
- fixed incorrect item names in storage drawer recipes
2023-12-22 22:56:44 +00:00

9 lines
288 B
JavaScript

LootJS.modifiers((event) => {
event
.addEntityLootModifier("minecraft:blaze")
.replaceLoot("minecraft:blaze_rod", "gtceu:sulfur_dust", true);
event
.addEntityLootModifier("minecraft:enderman")
.replaceLoot("minecraft:ender_pearl", "gtceu:ender_pearl_dust", true);
});