mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Preliminary work on the new default region setting mechanism
This commit is contained in:
@@ -60,5 +60,16 @@ namespace OpenSim.Data
|
||||
|
||||
bool Delete(UUID regionID);
|
||||
|
||||
List<RegionData> GetDefaultRegions(UUID scopeID);
|
||||
List<RegionData> GetFallbackRegions(UUID scopeID, int x, int y);
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum RegionFlags : int
|
||||
{
|
||||
DefaultRegion = 1, // Used for new Rez. Random if multiple defined
|
||||
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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user