From 3ffd77f70b1ca84de823070cdf2a8925b7b81ca3 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 3 Oct 2008 15:41:27 +0000 Subject: * oops, fix region startup to be in the correct sequence (though it appeared to work anyway) --- OpenSim/Region/Application/OpenSim.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 1e2b8a5..748edbb 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -84,7 +84,7 @@ namespace OpenSim /// /// Performs initialisation of the scene, such as loading configuration from disk. /// - public override void Startup() + protected override void StartupSpecific() { m_log.Info("===================================================================="); m_log.Info("========================= STARTING OPENSIM ========================="); @@ -94,7 +94,7 @@ namespace OpenSim m_console = new ConsoleBase("Region", this); MainConsole.Instance = m_console; - base.Startup(); + base.StartupSpecific(); //Run Startup Commands if (String.IsNullOrEmpty( m_startupCommandsFile )) -- cgit v1.1