From 079469b3f5e6b8a8b20115312d0bfd89841b3338 Mon Sep 17 00:00:00 2001 From: MW Date: Wed, 5 Nov 2008 17:45:56 +0000 Subject: more startup/initialisation refactoring --- OpenSim/Region/Application/OpenSim.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Application/OpenSim.cs') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index d2af16f..ded7508 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -90,7 +90,7 @@ namespace OpenSim m_log.Info("===================================================================="); m_log.Info("========================= STARTING OPENSIM ========================="); m_log.Info("===================================================================="); - m_log.InfoFormat("[OPENSIM MAIN]: Running in {0} mode", (ConfigurationSettings.Sandbox ? "sandbox" : "grid")); + m_log.InfoFormat("[OPENSIM MAIN]: Running in {0} mode", (ConfigurationSettings.Standalone ? "sandbox" : "grid")); m_console = new ConsoleBase("Region", this); MainConsole.Instance = m_console; @@ -642,7 +642,7 @@ namespace OpenSim ShowPluginCommandsHelp(CombineParams(helpArgs, 0), m_console); - if (ConfigurationSettings.Sandbox) + if (ConfigurationSettings.Standalone) { m_console.Notice(""); m_console.Notice("create user - adds a new user."); -- cgit v1.1