diff options
Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do we really still need RegionApplicationBase?]
Added a flag (bool m_autoCreateLindenStack = true) which says if the ClientStack will be autocreated and initialised when creating regions. This helps with moving ClientStacks to Region modules.
Currently this flag is hardcoded to true, as it is only for testing at the moment, so you need to change the value in the code if you want to turn off auto creating.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 84751bd..0929699 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -208,6 +208,7 @@ namespace OpenSim.Framework | |||
208 | public string MasterAvatarSandboxPassword = String.Empty; | 208 | public string MasterAvatarSandboxPassword = String.Empty; |
209 | public UUID originRegionID = UUID.Zero; | 209 | public UUID originRegionID = UUID.Zero; |
210 | public string proxyUrl = ""; | 210 | public string proxyUrl = ""; |
211 | public int ProxyOffset = 0; | ||
211 | public string RegionName = String.Empty; | 212 | public string RegionName = String.Empty; |
212 | public string regionSecret = UUID.Random().ToString(); | 213 | public string regionSecret = UUID.Random().ToString(); |
213 | 214 | ||