aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorDiva Canto2010-01-11 14:39:15 -0800
committerDiva Canto2010-01-11 14:39:15 -0800
commit4e7c449c5a2ac8479ee302513a549ee56132140e (patch)
tree8cc2688fab2adb0484b4a428f7fef3b38e9621a3 /OpenSim/Region/Application
parentMoved MainServer.Instance.AddStreamHandler(new OpenSim.SimStatusHandler()); a... (diff)
downloadopensim-SC_OLD-4e7c449c5a2ac8479ee302513a549ee56132140e.zip
opensim-SC_OLD-4e7c449c5a2ac8479ee302513a549ee56132140e.tar.gz
opensim-SC_OLD-4e7c449c5a2ac8479ee302513a549ee56132140e.tar.bz2
opensim-SC_OLD-4e7c449c5a2ac8479ee302513a549ee56132140e.tar.xz
This fixes the problem that region modules (new style) weren't being recognized.
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index f3f715a..c6932cf 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -197,6 +197,7 @@ namespace OpenSim
197 LoadPlugins(); 197 LoadPlugins();
198 foreach (IApplicationPlugin plugin in m_plugins) 198 foreach (IApplicationPlugin plugin in m_plugins)
199 { 199 {
200 m_log.Debug("XXX PostInitialise " + plugin.Name);
200 plugin.PostInitialise(); 201 plugin.PostInitialise();
201 } 202 }
202 203