From 15d41c2fc279f369f1f95e886ebaada94f558dcc Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Sun, 1 Jun 2008 01:34:46 +0000 Subject: * Fix build break by eliminating remaining IScenePermissions references - must remember to nant clean * Hook all server startups into base opensim server startup method --- OpenSim/Region/Application/OpenSimBackground.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Application/OpenSimBackground.cs') diff --git a/OpenSim/Region/Application/OpenSimBackground.cs b/OpenSim/Region/Application/OpenSimBackground.cs index dd618f0..51a5b67 100644 --- a/OpenSim/Region/Application/OpenSimBackground.cs +++ b/OpenSim/Region/Application/OpenSimBackground.cs @@ -48,7 +48,7 @@ namespace OpenSim /// /// Performs initialisation of the scene, such as loading configuration from disk. /// - public override void StartUp() + public override void Startup() { // // Called from app startup (OpenSim.Application) @@ -58,7 +58,7 @@ namespace OpenSim m_log.Info("===================================================================="); m_log.InfoFormat("[OPENSIM MAIN]: Running in background {0} mode", m_sandbox ? "sandbox" : "grid"); - base.StartUp(); + base.Startup(); // We are done with startup m_log.InfoFormat("[OPENSIM MAIN]: Startup complete, serving {0} region{1}", -- cgit v1.1