[BUG] Factory Door VulnerableSolved

The new purchasable Factory Door from the Rust Item Store can be destroyed with NoRaid enabled. Also applies to Industrial Door (Twitch drop). Also tugboat doors.

The plugin currently excludes building blocks and prefab names containing "deploy" or "building" from being destroyed. According to this list Industrial and Factory door don't follow that naming scheme:

assets/prefabs/misc/twitch/industrialdoora/door.hinged.industrial.a.prefab
assets/prefabs/misc/permstore/factorydoor/door.hinged.industrial.d.prefab

Adding them to the list in line 598 should do the trick:

Replace

if (entity is BuildingBlock || entity.name.Contains("deploy") || entity.name.Contains("building"))​

With
if (entity is BuildingBlock || entity.name.Contains("deploy") || entity.name.Contains("building") || entity.name.Contains("industrialdoora") || entity.name.Contains("factorydoor"))​
Locked automatically