Help with a Zone Flag

Good Morning,

I just reinstalled a zone with flags I have been using for several wipes and always worked in the past.

"Flags": "AutoLights, PvpGod, UnDestr, NoBuild, NoDecay, NoDeploy, NoPlayerLoot, NoSuicide, NoStability, NoCup, NoLootSpawns, NoNPCSpawns, NoStash, NoHeliTargeting, NoAPCTargeting, NoEntityPickup, LootSelf"

Now all of a sudden if someone tries to enter with a timed explosive they get bounced out of the zone and get a message "You cannot enter Hotel with any of the following items: Timed explosive charge. (I am also useing the Hotel plugin) I have even tried this using vanish for my admin and he gets bounced. Can some one tell me which flag is causing this? I actually like the idea but I need to know which flag is causing it and if there is a way to edit this list? I have some other Ideas I could use with this if I know where to look.

This is not a function of the Zone Manager plugin.

Take a look at the Hotel plugin config file, you should have code snippet there that looks like this:
"blackList": [
"explosive.timed"
],

Following the logic from the file, you can add more items in this list by the item shortname. Make sure to use commas for all of them, except for the last one.
https://www.corrosionhour.com/rust-item-list/

For example:
"blackList": [
"explosive.timed",
"ammo.rifle.explosive",
"explosives",
"grenade.f1",
"explosive.satchel",
"ammo.rocket.hv",
"ammo.rocket.fire",
"ammo.rocket.mlrs",
"ammo.rocket.basic",
"rocket.launcher"
],

If you know how widths, radius, height, etc works for this (Zone Manager) plugin, I would very much appreciate help in my thread :-)
https://umod.org/community/zone-manager/39664-sizes-how-much-is-1-length-width-and-radius

Thank you! I did not think to look there.