Provide feedback as to which avatars are resending appearance informion on "appearance send" console command

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-12-06 16:07:24 +00:00
parent ac3d88804f
commit 0dd45f6ca4
1 changed files with 11 additions and 2 deletions

View File

@ -112,7 +112,16 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance
{
foreach (Scene scene in m_scenes.Values)
{
scene.ForEachRootScenePresence(sp => scene.AvatarFactory.SendAppearance(sp.UUID));
scene.ForEachRootScenePresence(
sp =>
{
MainConsole.Instance.OutputFormat(
"Sending appearance information for {0} to all other avatars in {1}",
sp.Name, scene.RegionInfo.RegionName);
scene.AvatarFactory.SendAppearance(sp.UUID);
}
);
}
}
}