diff options
author | Diva Canto | 2013-05-14 08:47:18 -0700 |
---|---|---|
committer | Diva Canto | 2013-05-14 08:47:18 -0700 |
commit | 645da54f25bb034eb76151daa9723763eae13303 (patch) | |
tree | 58c200f5b70c22faaf4904164780a24b3e1708c4 /OpenSim/Region/ClientStack/Linden | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-645da54f25bb034eb76151daa9723763eae13303.zip opensim-SC_OLD-645da54f25bb034eb76151daa9723763eae13303.tar.gz opensim-SC_OLD-645da54f25bb034eb76151daa9723763eae13303.tar.bz2 opensim-SC_OLD-645da54f25bb034eb76151daa9723763eae13303.tar.xz |
Revert "HGTP-mesh bug: the mesh download requests were going to the departing sims for a little while. This was also true for local TPs. BUt for local TPs the assets are on the same server, so it doesn't matter. For HGTPs, it matters. This potential fix moves sending the initial data to later, after the client has completed the movement into the region. Fingers crossed that it doesn't mess other things up!"
This reverts commit f32a21d96707f87ecbdaf42c0059f8494a119d31.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 3 |
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 | { |