#LootJS - Removing mod items from loot chests

5 messages · Page 1 of 1 (latest)

hexed bough
#

I would like items from the selected mod not to appear in loot chests.

I tried with this, but it didn't work:

LootJS.modifiers((event) => {
    event
        .addLootTypeModifier(LootType.CHEST)
        .removeLoot({ mod: 'quark' })
})
grim pollenBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

latent yarrow
#

removeLoot Takes an Item Stack or Ingredients to remove

#

So If you want to Filter by Mod do: Ingredient.of("@quark")

hexed bough
#

Thank you very much for help