Mantis#2105. Thank you kindly, HomerHorwitz for a patch that addresses:

Due to the many problems with not cleaned up child-agents, I thought it 
might make sense to be able to see them on the console. 'show users' on 
the region-server's console now outputs root- and child-agents (with 
"root" or "child" column)
This commit is contained in:
Charles Krinke
2008-09-03 03:32:29 +00:00
parent e98780fea5
commit 98da84c851
2 changed files with 22 additions and 8 deletions

View File

@@ -435,6 +435,19 @@ namespace OpenSim.Region.Environment.Scenes
return avatars;
}
public List<ScenePresence> GetCurrentScenePresences()
{
List<ScenePresence> presences = new List<ScenePresence>();
ForEachCurrentScene(delegate(Scene scene)
{
List<ScenePresence> scenePresences = scene.GetScenePresences();
presences.AddRange(scenePresences);
});
return presences;
}
public RegionInfo GetRegionInfo(ulong regionHandle)
{
foreach (Scene scene in m_localScenes)