Exclude entities not working for allSolved
The plugin seems to be working except that it is not applying the excludes to all the items in the list.  It only works on the large wooden box, and not for any other entity in the list.  Any ideas out there?
{
  "AdminCanLoot": false,
  "CanAuthorizeCupboard": true,
  "CanLootBackpack": true,
  "CanLootBackpackPlugin": true,
  "CanLootCorpse": true,
  "CanLootEntity": false,
  "CanLootPlayer": true,
  "CanOvenToggle": false,
  "CanPickup": false,
  "ExcludeEntities": [
    "mailbox.deployed",
    "dropbox",
    "planter.large",
    "box.wooden.large",
    "box.wooden",
    "coffin.storage",
    "box.repair.bench",
    "vending.machine",
    "wall.frame.shopfront.metal",
    "wall.frame.shopfront",
    "fireplace.stone",
    "skull_fire_pit",
    "campfire",
    "water.catcher.large",
    "planter.small",
    "water.catcher.small",
    "furnace",
    "locker",
    "stash.small",
    "cursedcauldron"
  ],
  "UseCupboard": true,
  "UseCupboardInclude": [
    "storage"
  ],
  "UseExcludeEntities": true,
  "UseFriendsAPI": false,
  "UseOnlyInCupboardRange": true,
  "UseOnlyInCupboardRangeInclude": [
    "storage"
  ],
  "UsePermission": false,
  "UseTeams": false,
  "UseZoneManager": false,
  "ZoneID": [
    "12345678"
  ],
  "ZoneManagerIncludeMode": false
}​
The plugin searches for the name of the item in the exclusion list and, if it finds it, allows it to be opened. So, if the name of the item is correct, then it will process it. It can’t be that one item works, and the other doesn’t work with the correct names. I can test your config on a test server a bit later.
Thank you! I thought I took care to have the correct shortnames.  Other thoughts: Am I missing a '.deployed' in these or will a prefab path work?
That's about how it should be:
    "dropbox.deployed",
    "planter.large.deployed",
    "box.wooden.large",
    "woodbox_deployed",
    "coffinstorage",
    "repairbench_deployed",
    "vendingmachine.deployed",
    "wall.frame.shopfront.metal",
    "wall.frame.shopfront",
    "fireplace.deployed",
    "skull_fire_pit",
    "campfire",
    "water_catcher_large",
    "planter.small.deployed",
    "water_catcher_small",
    "furnace",
    "locker.deployed",
    "stash_small_deployed",
    "cursedcauldron.deployed"​

You can use the plugin EntityOwner to find the correct name.

 
got it.  figured as much.  thank you!  Works. Consider Solved.
Locked automatically