aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMelanie2012-02-24 19:31:27 +0100
committerMelanie2012-02-24 19:31:27 +0100
commit991826ca76a80f8a1e03ce63d759185fddd5da4f (patch)
tree2b1fc9fbac186fe80cfa1cfb5ec35823beb9b3d9 /OpenSim/Region
parentAdd a cache on GridService requests (diff)
downloadopensim-SC_OLD-991826ca76a80f8a1e03ce63d759185fddd5da4f.zip
opensim-SC_OLD-991826ca76a80f8a1e03ce63d759185fddd5da4f.tar.gz
opensim-SC_OLD-991826ca76a80f8a1e03ce63d759185fddd5da4f.tar.bz2
opensim-SC_OLD-991826ca76a80f8a1e03ce63d759185fddd5da4f.tar.xz
Try not to send the avatar updates on login. This may mean loggin in with
invisible attachments again but could help the appearance issues.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 26fa6c0..01053bf 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -1000,7 +1000,8 @@ namespace OpenSim.Region.Framework.Scenes
1000 } 1000 }
1001 } 1001 }
1002 1002
1003 SendAvatarDataToAllAgents(); 1003 if (wasChild)
1004 SendAvatarDataToAllAgents();
1004 1005
1005 // send the animations of the other presences to me 1006 // send the animations of the other presences to me
1006 m_scene.ForEachRootScenePresence(delegate(ScenePresence presence) 1007 m_scene.ForEachRootScenePresence(delegate(ScenePresence presence)