#remove items from loot table
9 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
This should remove the item from all chests.
LootJS.modifiers(event => {
event.addLootTypeModifier("chest").removeLoot(Ingredient.of("..."))
})
If you want specific loot, you'd need the recouce loaction of that loot table
event.addLootTableModifier("...").removeLoot(Ingredient.of("..."))
so
event.addLootTableModifier("chests/nether_bridge").removeLoot(Ingredient.of("minecraft:gold_ingot"))
would remove gold from only fortress chests?
I think so