aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorRobert Adams2013-05-14 08:49:41 -0700
committerRobert Adams2013-05-14 08:49:41 -0700
commit03fddb301b6b5a77f129bb0314176d89b78fd931 (patch)
tree62d6cc5302c87cb8b59932a5933a2673cee53001 /OpenSim/Region/ClientStack/Linden
parentBulletSim: Fix for mantis 6487, also minor adjustment to fix flying while you... (diff)
parentRevert "HGTP-mesh bug: the mesh download requests were going to the departing... (diff)
downloadopensim-SC-03fddb301b6b5a77f129bb0314176d89b78fd931.zip
opensim-SC-03fddb301b6b5a77f129bb0314176d89b78fd931.tar.gz
opensim-SC-03fddb301b6b5a77f129bb0314176d89b78fd931.tar.bz2
opensim-SC-03fddb301b6b5a77f129bb0314176d89b78fd931.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 0fa1c0e..985aa4d 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -1371,6 +1371,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1371 // circuit code to the existing child agent. This is not particularly obvious. 1371 // circuit code to the existing child agent. This is not particularly obvious.
1372 SendAckImmediate(endPoint, uccp.Header.Sequence); 1372 SendAckImmediate(endPoint, uccp.Header.Sequence);
1373 1373
1374 // We only want to send initial data to new clients, not ones which are being converted from child to root.
1375 if (client != null)
1376 client.SceneAgent.SendInitialDataToMe();
1374 } 1377 }
1375 else 1378 else
1376 { 1379 {