#Trying to find 1.19.2 documentation on replacing loot tables for blocks
6 messages · Page 1 of 1 (latest)
You can remove loot from blocks with LootJs
LootJS.modifiers((event) => {
event
.addBlockLootModifier("minecraft:dirt")
.removeLoot("minecraft:dirt")
});
Thats all of the code you need to remove a blocks loot drop with LootJS
https://github.com/AlmostReliable/lootjs/wiki
There's more info on the LootJs wiki
sorry