trying to figure out how to change ore drops from raw ore to crushed ore from create, similar to in createa&b, using LootJS.
I am not that familiar with javascript or programming in general, and I am lost on what LootJS action I should use to modify the raw ore to be a different item or tag, or if im trying to do this the right way at all
event
.addBlockLootModifier('minecraft:iron_ore')
.modifyLoot('minecraft:raw_iron', (itemStack) => {
itemStack.
return itemStack
})
});```