Excluding small stash from decaying?Solved
Hi i am trying to exclude small stash from decay.
in order to do so the config requires the prefab name.

I've gotten it to work for sleeping bags by entering the prefab name, but i cant seemt to get it to work for small stash.
Here's is the code im tryin g to use:

{
"Destroy time in seconds": 1200,
"Permission to ignore auto decay": "AutoDecay.Admin",
"Notify player, that his object will be removed": true,
"Excluded prefabs (no auto decay of these objects)": [
"sleepingbag_static.prefab",
"sleepingbag.item.prefab",
"sleepingbag_leather_deployed.prefab",
"small_stash.item.prefab",
"small-stash-deploy.prefab",
"lootpanel.smallstash.prefab"
]
}
Fixed, the prefabs detector here on umod does not give all the information for small stashes.
I went online and found this correct prefab name for small stash and it now works fine for anyone else going thru this:

small_stash_deployed.prefab  <--- thats the one i needed that the prefab plugin wouldnt give me
Locked automatically