Setting up databases at your points

I created a base spawn point through spawns, but it says to me that the location is not working. What else do I need to do?


"Spawns Database": {
"Buyable Spawns Database File (Optional)": "Easy",
"Maintained Spawns Database File (Optional)": "none",
"Scheduled Spawns Database File (Optional)": "nove",

hi, one of them says nove instead of none

with "Easy", the spawn points are likely blocked by metal detector sources. try this fix:

In the .cs on line 12615 change
if (e is BuildingBlock || e.ShortPrefabName.Contains("wall.external.high") || !e.enableSaving || e.HasFlag(BaseEntity.Flags.Locked))
to
if (e is BuildingBlock || e.ShortPrefabName.Contains("wall.external.high") || !e.enableSaving && e.HasFlag(BaseEntity.Flags.Busy) && e.HasFlag(BaseEntity.Flags.Locked))