diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 6 |
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; |