From c0c1a31f61ab90b958c4aa56d0f76749e2cad738 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 26 Feb 2009 17:06:06 +0000 Subject: Attempt to fix the "region starts but doesn't load anything" issue --- OpenSim/Region/Application/OpenSimBase.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Region') 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 m_moduleLoader = new ModuleLoader(m_config.Source); LoadPlugins(); + + foreach (IApplicationPlugin plugin in m_plugins) + { + plugin.PostInitialise(); + } + // Only enable logins to the regions once we have completely finished starting up (apart from scripts) m_commsManager.GridService.RegionLoginsEnabled = true; -- cgit v1.1