diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index f2e2ce7..9cad3fe 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2532,7 +2532,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2532 | // again here... this comes after the cached appearance check because the avatars | 2532 | // again here... this comes after the cached appearance check because the avatars |
2533 | // appearance goes into the avatar update packet | 2533 | // appearance goes into the avatar update packet |
2534 | SendAvatarDataToAllAgents(); | 2534 | SendAvatarDataToAllAgents(); |
2535 | SendAppearanceToAgent(this); | 2535 | |
2536 | // Sending us our own appearance does not seem to be necessary, and the viewer warns in the log if you do | ||
2537 | // this. | ||
2538 | // SendAppearanceToAgent(this); | ||
2536 | 2539 | ||
2537 | // If we are using the the cached appearance then send it out to everyone | 2540 | // If we are using the the cached appearance then send it out to everyone |
2538 | if (cachedappearance) | 2541 | if (cachedappearance) |