diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 5a842d8..7ce94d4 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2789,7 +2789,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2789 | // If we aren't using a cached appearance, then clear out the baked textures | 2789 | // If we aren't using a cached appearance, then clear out the baked textures |
2790 | if (! cachedappearance) | 2790 | if (! cachedappearance) |
2791 | { | 2791 | { |
2792 | m_appearance.ResetBakedTextures(); | 2792 | m_appearance.ResetAppearance(); |
2793 | if (m_scene.AvatarFactory != null) | 2793 | if (m_scene.AvatarFactory != null) |
2794 | m_scene.AvatarFactory.QueueAppearanceSave(UUID); | 2794 | m_scene.AvatarFactory.QueueAppearanceSave(UUID); |
2795 | } | 2795 | } |
@@ -2799,12 +2799,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
2799 | // again here... this comes after the cached appearance check because the avatars | 2799 | // again here... this comes after the cached appearance check because the avatars |
2800 | // appearance goes into the avatar update packet | 2800 | // appearance goes into the avatar update packet |
2801 | SendAvatarDataToAllAgents(); | 2801 | SendAvatarDataToAllAgents(); |
2802 | SendAppearanceToAgent(this); | ||
2802 | 2803 | ||
2803 | // If we are using the the cached appearance then send it out to everyone | 2804 | // If we are using the the cached appearance then send it out to everyone |
2804 | if (cachedappearance) | 2805 | if (cachedappearance) |
2805 | { | 2806 | { |
2806 | m_log.WarnFormat("[SCENEPRESENCE]: baked textures are in the cache for {0}", Name); | 2807 | m_log.InfoFormat("[SCENEPRESENCE]: baked textures are in the cache for {0}", Name); |
2807 | SendAppearanceToAgent(this); | ||
2808 | 2808 | ||
2809 | // If the avatars baked textures are all in the cache, then we have a | 2809 | // If the avatars baked textures are all in the cache, then we have a |
2810 | // complete appearance... send it out, if not, then we'll send it when | 2810 | // complete appearance... send it out, if not, then we'll send it when |