aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
diff options
context:
space:
mode:
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 {