aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 6367fcf..f77fb2c 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3749,9 +3749,12 @@ namespace OpenSim.Region.Framework.Scenes
3749 3749
3750 // We have to wait until the viewer contacts this region after receiving EAC. 3750 // We have to wait until the viewer contacts this region after receiving EAC.
3751 // That calls AddNewClient, which finally creates the ScenePresence 3751 // That calls AddNewClient, which finally creates the ScenePresence
3752 m_log.Debug("ICADU -> pre wait");
3752 ScenePresence childAgentUpdate = WaitGetScenePresence(cAgentData.AgentID); 3753 ScenePresence childAgentUpdate = WaitGetScenePresence(cAgentData.AgentID);
3754 m_log.Debug("ICADU -> post wait");
3753 if (childAgentUpdate != null) 3755 if (childAgentUpdate != null)
3754 { 3756 {
3757 m_log.Debug("ICADU -> not child agent!");
3755 childAgentUpdate.ChildAgentDataUpdate(cAgentData); 3758 childAgentUpdate.ChildAgentDataUpdate(cAgentData);
3756 return true; 3759 return true;
3757 } 3760 }
@@ -3767,7 +3770,7 @@ namespace OpenSim.Region.Framework.Scenes
3767 /// <returns>true if we handled it.</returns> 3770 /// <returns>true if we handled it.</returns>
3768 public virtual bool IncomingChildAgentDataUpdate(AgentPosition cAgentData) 3771 public virtual bool IncomingChildAgentDataUpdate(AgentPosition cAgentData)
3769 { 3772 {
3770 //m_log.Debug(" XXX Scene IncomingChildAgentDataUpdate POSITION in " + RegionInfo.RegionName); 3773 m_log.Debug(" XXX Scene IncomingChildAgentDataUpdate POSITION in " + RegionInfo.RegionName);
3771 ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID); 3774 ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID);
3772 if (childAgentUpdate != null) 3775 if (childAgentUpdate != null)
3773 { 3776 {