From f2c456c23df63e93d2ad7282203b94deac9f79f5 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 5 Aug 2008 17:28:23 +0000 Subject: * Make currently selected region appear in the region console prompt * This region is used for single region commands (such as save-xml2) --- OpenSim/Region/Application/OpenSim.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Application/OpenSim.cs') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index e4f1ddc..0dc4560 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -92,6 +92,9 @@ namespace OpenSim m_console = new ConsoleBase("Region", this); MainConsole.Instance = m_console; + // For now, start at the 'root' level by default + ChangeSelectedRegion(new string[] {"root"}); + base.Startup(); //Run Startup Commands @@ -520,11 +523,11 @@ namespace OpenSim if (!m_sceneManager.TrySetCurrentScene(regionName)) { - m_console.Error("Couldn't set current region to: " + regionName); + m_console.Error("CONSOLE", "Couldn't set current region to: " + regionName); } } - - m_console.Notice("CONSOLE", "Selected region: " + GetSelectedRegionName()); + + m_console.DefaultPrompt = String.Format("Region ({0}) ", GetSelectedRegionName()); } /// -- cgit v1.1