diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 429fc06..db1a9d5 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2777,7 +2777,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2777 | AgentPosition agentpos = new AgentPosition(); | 2777 | AgentPosition agentpos = new AgentPosition(); |
2778 | agentpos.CopyFrom(cadu); | 2778 | agentpos.CopyFrom(cadu); |
2779 | 2779 | ||
2780 | m_scene.SendOutChildAgentUpdates(agentpos, this); | 2780 | // Let's get this out of the update loop |
2781 | Util.FireAndForget(delegate { m_scene.SendOutChildAgentUpdates(agentpos, this); }); | ||
2781 | } | 2782 | } |
2782 | } | 2783 | } |
2783 | 2784 | ||