aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2014-08-04 00:16:56 +0100
committerUbitUmarov2014-08-04 00:16:56 +0100
commitb07b0ff555ee0d930e350ba56bcb389543d22e06 (patch)
tree3a261713bb6b907095c39cb319b9a89db841fff4
parent missing currentParcelUUID update (diff)
downloadopensim-SC_OLD-b07b0ff555ee0d930e350ba56bcb389543d22e06.zip
opensim-SC_OLD-b07b0ff555ee0d930e350ba56bcb389543d22e06.tar.gz
opensim-SC_OLD-b07b0ff555ee0d930e350ba56bcb389543d22e06.tar.bz2
opensim-SC_OLD-b07b0ff555ee0d930e350ba56bcb389543d22e06.tar.xz
missing child login parcel overlay
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 8d254f2..24a92eb 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -3465,6 +3465,14 @@ namespace OpenSim.Region.Framework.Scenes
3465 // we created a new ScenePresence (a new child agent) in a fresh region. 3465 // we created a new ScenePresence (a new child agent) in a fresh region.
3466 // Request info about all the (root) agents in this region 3466 // Request info about all the (root) agents in this region
3467 // Note: This won't send data *to* other clients in that region (children don't send) 3467 // Note: This won't send data *to* other clients in that region (children don't send)
3468 if (m_teleportFlags <= 0)
3469 {
3470 ILandChannel landch = m_scene.LandChannel;
3471 if (landch != null)
3472 {
3473 landch.sendClientInitialLandInfo(ControllingClient);
3474 }
3475 }
3468 SendOtherAgentsAvatarDataToMe(); 3476 SendOtherAgentsAvatarDataToMe();
3469 SendOtherAgentsAppearanceToMe(); 3477 SendOtherAgentsAppearanceToMe();
3470 3478