diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 8 |
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 | ||