diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 9 |
1 files changed, 6 insertions, 3 deletions
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 | |||
92 | m_console = new ConsoleBase("Region", this); | 92 | m_console = new ConsoleBase("Region", this); |
93 | MainConsole.Instance = m_console; | 93 | MainConsole.Instance = m_console; |
94 | 94 | ||
95 | // For now, start at the 'root' level by default | ||
96 | ChangeSelectedRegion(new string[] {"root"}); | ||
97 | |||
95 | base.Startup(); | 98 | base.Startup(); |
96 | 99 | ||
97 | //Run Startup Commands | 100 | //Run Startup Commands |
@@ -520,11 +523,11 @@ namespace OpenSim | |||
520 | 523 | ||
521 | if (!m_sceneManager.TrySetCurrentScene(regionName)) | 524 | if (!m_sceneManager.TrySetCurrentScene(regionName)) |
522 | { | 525 | { |
523 | m_console.Error("Couldn't set current region to: " + regionName); | 526 | m_console.Error("CONSOLE", "Couldn't set current region to: " + regionName); |
524 | } | 527 | } |
525 | } | 528 | } |
526 | 529 | ||
527 | m_console.Notice("CONSOLE", "Selected region: " + GetSelectedRegionName()); | 530 | m_console.DefaultPrompt = String.Format("Region ({0}) ", GetSelectedRegionName()); |
528 | } | 531 | } |
529 | 532 | ||
530 | /// <summary> | 533 | /// <summary> |