diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/ScenePresence.cs')
-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 8a42616..b38523f 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2787,7 +2787,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
2787 | AgentPosition agentpos = new AgentPosition(); | 2787 | AgentPosition agentpos = new AgentPosition(); |
2788 | agentpos.CopyFrom(cadu); | 2788 | agentpos.CopyFrom(cadu); |
2789 | 2789 | ||
2790 | m_scene.SendOutChildAgentUpdates(agentpos, this); | 2790 | // Let's get this out of the update loop |
2791 | Util.FireAndForget(delegate { m_scene.SendOutChildAgentUpdates(agentpos, this); }); | ||
2791 | } | 2792 | } |
2792 | } | 2793 | } |
2793 | 2794 | ||