diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index dbadecc..6829bef 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -661,13 +661,13 @@ namespace OpenSim | |||
661 | break; | 661 | break; |
662 | 662 | ||
663 | case "users": | 663 | case "users": |
664 | IList agents = m_sceneManager.GetCurrentSceneAvatars(); | 664 | IList agents = m_sceneManager.GetCurrentScenePresences(); |
665 | 665 | ||
666 | m_console.Notice(String.Format("\nAgents connected: {0}\n", agents.Count)); | 666 | m_console.Notice(String.Format("\nAgents connected: {0}\n", agents.Count)); |
667 | 667 | ||
668 | m_console.Notice( | 668 | m_console.Notice( |
669 | String.Format("{0,-16}{1,-16}{2,-37}{3,-16}", "Firstname", "Lastname", | 669 | String.Format("{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}", "Firstname", "Lastname", |
670 | "Agent ID","Region")); | 670 | "Agent ID", "Root/Child", "Region")); |
671 | 671 | ||
672 | foreach (ScenePresence presence in agents) | 672 | foreach (ScenePresence presence in agents) |
673 | { | 673 | { |
@@ -685,11 +685,12 @@ namespace OpenSim | |||
685 | 685 | ||
686 | m_console.Notice( | 686 | m_console.Notice( |
687 | String.Format( | 687 | String.Format( |
688 | "{0,-16}{1,-16}{2,-37}{3,-16}", | 688 | "{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}", |
689 | presence.Firstname, | 689 | presence.Firstname, |
690 | presence.Lastname, | 690 | presence.Lastname, |
691 | presence.UUID, | 691 | presence.UUID, |
692 | regionName)); | 692 | presence.IsChildAgent ? "Child" : "Root", |
693 | regionName)); | ||
693 | } | 694 | } |
694 | 695 | ||
695 | m_console.Notice(""); | 696 | m_console.Notice(""); |