Howdy all,

after one year I updated to the newest version of this plugin and the newer version looks ridicoulus outdated. All found entities are sorted as building blocks?! If you guys have problems using this plugin use the inital version of it, or apply this small fix by your own:
old:

			foreach (var entity in building.decayEntities)
			{
                
                var cost = entity.BuildCost();
				if (cost == null)
					deployables.Add(entity);
				else
					blocks.Add(entity);
			}

new:

foreach (var entity in building.decayEntities)
			{
                if (entity as BuildingBlock == null)
					deployables.Add(entity);
				else
					blocks.Add(entity);
			}