Add a "LockedOut" flag to allow locking a region out via the grid server.

This flag prevents registration of a known region
This commit is contained in:
Melanie
2010-01-10 04:23:23 +00:00
parent 9727e3d66b
commit 78e9dc7c2c
2 changed files with 5 additions and 1 deletions

View File

@@ -71,6 +71,7 @@ namespace OpenSim.Data
FallbackRegion = 2, // Regions we redirect to when the destination is down
RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false
NoDirectLogin = 8, // Region unavailable for direct logins (by name)
Persistent = 16 // Don't remove on unregister
Persistent = 16, // Don't remove on unregister
LockedOut = 32 // Don't allow registration
}
}