diff options
author | Melanie | 2010-01-15 21:13:57 +0000 |
---|---|---|
committer | Melanie | 2010-01-15 21:13:57 +0000 |
commit | 0d5f182c0235139a7bb343bf9856e064cf19e2da (patch) | |
tree | dddab9a2a923c2b66aed9793ab938eb0d317eb5a /OpenSim/Data/IRegionData.cs | |
parent | Added a UserAccountCache to the UserAccountServiceConnectors. Uses a CenomeCa... (diff) | |
download | opensim-SC_OLD-0d5f182c0235139a7bb343bf9856e064cf19e2da.zip opensim-SC_OLD-0d5f182c0235139a7bb343bf9856e064cf19e2da.tar.gz opensim-SC_OLD-0d5f182c0235139a7bb343bf9856e064cf19e2da.tar.bz2 opensim-SC_OLD-0d5f182c0235139a7bb343bf9856e064cf19e2da.tar.xz |
Add a handful of new region flags and a small migration
Diffstat (limited to 'OpenSim/Data/IRegionData.cs')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index 140bc96..9ed5dd0 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -72,6 +72,9 @@ namespace OpenSim.Data | |||
72 | RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false | 72 | RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false |
73 | NoDirectLogin = 8, // Region unavailable for direct logins (by name) | 73 | NoDirectLogin = 8, // Region unavailable for direct logins (by name) |
74 | Persistent = 16, // Don't remove on unregister | 74 | Persistent = 16, // Don't remove on unregister |
75 | LockedOut = 32 // Don't allow registration | 75 | LockedOut = 32, // Don't allow registration |
76 | NoMove = 64, // Don't allow moving this region | ||
77 | Reservation = 128, // This is an inactive reservation | ||
78 | Authenticate = 256 // Require authentication | ||
76 | } | 79 | } |
77 | } | 80 | } |