aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
authorUbitUmarov2019-03-19 06:38:43 +0000
committerUbitUmarov2019-03-19 06:38:43 +0000
commit182977a872f837a29f936964d8df55942187261a (patch)
tree54fc103bb5ac6f504942e491b62a006c26935957 /OpenSim/Region/Framework/Scenes
parentooops (diff)
downloadopensim-SC-182977a872f837a29f936964d8df55942187261a.zip
opensim-SC-182977a872f837a29f936964d8df55942187261a.tar.gz
opensim-SC-182977a872f837a29f936964d8df55942187261a.tar.bz2
opensim-SC-182977a872f837a29f936964d8df55942187261a.tar.xz
do not send parceloverlay on crossings (may be bad, or not)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index e663055..a67d701 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -2244,11 +2244,12 @@ namespace OpenSim.Region.Framework.Scenes
2244 // start sending terrain patchs 2244 // start sending terrain patchs
2245 if (!gotCrossUpdate) 2245 if (!gotCrossUpdate)
2246 Scene.SendLayerData(ControllingClient); 2246 Scene.SendLayerData(ControllingClient);
2247
2248 // send initial land overlay and parcel
2249 ILandChannel landch = m_scene.LandChannel;
2250 if (landch != null)
2251 landch.sendClientInitialLandInfo(client, !gotCrossUpdate);
2247 } 2252 }
2248 // send initial land overlay and parcel
2249 ILandChannel landch = m_scene.LandChannel;
2250 if (landch != null)
2251 landch.sendClientInitialLandInfo(client);
2252 2253
2253 if (!IsChildAgent) 2254 if (!IsChildAgent)
2254 { 2255 {