aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorSean Dague2009-02-26 17:06:06 +0000
committerSean Dague2009-02-26 17:06:06 +0000
commitc0c1a31f61ab90b958c4aa56d0f76749e2cad738 (patch)
treee2f9fa5f99c0b4480197ba849165ef12e2644c79 /OpenSim
parentAdded a PostInitialise method to IApplicationPlugin, this allows us to do wor... (diff)
downloadopensim-SC_OLD-c0c1a31f61ab90b958c4aa56d0f76749e2cad738.zip
opensim-SC_OLD-c0c1a31f61ab90b958c4aa56d0f76749e2cad738.tar.gz
opensim-SC_OLD-c0c1a31f61ab90b958c4aa56d0f76749e2cad738.tar.bz2
opensim-SC_OLD-c0c1a31f61ab90b958c4aa56d0f76749e2cad738.tar.xz
Attempt to fix the "region starts but doesn't load anything" issue
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index cbc441c..4d809b0 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -194,6 +194,12 @@ namespace OpenSim
194 m_moduleLoader = new ModuleLoader(m_config.Source); 194 m_moduleLoader = new ModuleLoader(m_config.Source);
195 195
196 LoadPlugins(); 196 LoadPlugins();
197
198 foreach (IApplicationPlugin plugin in m_plugins)
199 {
200 plugin.PostInitialise();
201 }
202
197 203
198 // Only enable logins to the regions once we have completely finished starting up (apart from scripts) 204 // Only enable logins to the regions once we have completely finished starting up (apart from scripts)
199 m_commsManager.GridService.RegionLoginsEnabled = true; 205 m_commsManager.GridService.RegionLoginsEnabled = true;