* oops, fix region startup to be in the correct sequence (though it appeared to work anyway)

This commit is contained in:
Justin Clarke Casey
2008-10-03 15:41:27 +00:00
parent 3902149e1b
commit 3ffd77f70b
3 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,7 @@ namespace OpenSim
/// <summary>
/// Performs initialisation of the scene, such as loading configuration from disk.
/// </summary>
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 ))