Provide feedback as to which avatars are resending appearance informion on "appearance send" console command
parent
ac3d88804f
commit
0dd45f6ca4
|
@ -112,7 +112,16 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance
|
||||||
{
|
{
|
||||||
foreach (Scene scene in m_scenes.Values)
|
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);
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue