Skip to content

2.2.2

Choose a tag to compare

@ez-plugins ez-plugins released this 09 Feb 21:31
· 27 commits to main since this release
5e14cdd
  • New NBT filter options for sell prevention ( by @matheusherman in #27 )
    • Added NBT data whitelist
    • Added NBT data blacklist

Default config.yml settings

sell:
  # Ignore items with NBT (custom tags/metadata) during /sellhand and /sellinventory
  # When enabled, only plain items without NBT will be sold.
  # For example: if you have a "Supreme Bone" (with NBT) and normal bones,
  # only the normal bones will be sold when using /sellinventory.
  # Default: false
  ignore-items-with-nbt: false

  # NBT tag filter for more granular control
  # Mode: 'off', 'whitelist', or 'blacklist'
  #   - 'off' (default): Ignore the filter, use ignore-items-with-nbt setting only
  #   - 'whitelist': Only allow items with NBT tags in the whitelist
  #   - 'blacklist': Block items with NBT tags in the blacklist
  nbt-filter:
    mode: "off"
    whitelist: []
    blacklist: []