diff options
author | Melanie | 2010-01-10 02:44:57 +0000 |
---|---|---|
committer | Melanie | 2010-01-10 02:44:57 +0000 |
commit | 9727e3d66b7324a2fa63e1cd95a77e2a82882723 (patch) | |
tree | 406ae0bf0b34d6812c33979449c993ca267d34a6 /OpenSim/Data | |
parent | Add last_seen field to regions table (diff) | |
download | opensim-SC_OLD-9727e3d66b7324a2fa63e1cd95a77e2a82882723.zip opensim-SC_OLD-9727e3d66b7324a2fa63e1cd95a77e2a82882723.tar.gz opensim-SC_OLD-9727e3d66b7324a2fa63e1cd95a77e2a82882723.tar.bz2 opensim-SC_OLD-9727e3d66b7324a2fa63e1cd95a77e2a82882723.tar.xz |
Add "Persistent" flag to regions table flags values
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index b8de1d8..41c74f2 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -70,6 +70,7 @@ namespace OpenSim.Data | |||
70 | DefaultRegion = 1, // Used for new Rez. Random if multiple defined | 70 | DefaultRegion = 1, // Used for new Rez. Random if multiple defined |
71 | FallbackRegion = 2, // Regions we redirect to when the destination is down | 71 | FallbackRegion = 2, // Regions we redirect to when the destination is down |
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 | } | 75 | } |
75 | } | 76 | } |