diff options
Slowing TPs down a bit further.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Hypergrid')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Hypergrid/HGSceneCommunicationService.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Hypergrid/HGSceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/Hypergrid/HGSceneCommunicationService.cs index 3bc7fd1..ced5b86 100644 --- a/OpenSim/Region/Environment/Scenes/Hypergrid/HGSceneCommunicationService.cs +++ b/OpenSim/Region/Environment/Scenes/Hypergrid/HGSceneCommunicationService.cs | |||
@@ -198,7 +198,7 @@ namespace OpenSim.Region.Environment.Scenes.Hypergrid | |||
198 | agent.child = true; | 198 | agent.child = true; |
199 | if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY) || isHyperLink) | 199 | if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY) || isHyperLink) |
200 | { | 200 | { |
201 | Thread.Sleep(1000); | 201 | Thread.Sleep(2000); |
202 | 202 | ||
203 | // brand new agent | 203 | // brand new agent |
204 | agent.CapsPath = Util.GetRandomCapsPath(); | 204 | agent.CapsPath = Util.GetRandomCapsPath(); |
@@ -208,7 +208,7 @@ namespace OpenSim.Region.Environment.Scenes.Hypergrid | |||
208 | return; | 208 | return; |
209 | } | 209 | } |
210 | 210 | ||
211 | Thread.Sleep(2000); | 211 | Thread.Sleep(3000); |
212 | 212 | ||
213 | // TODO Should construct this behind a method | 213 | // TODO Should construct this behind a method |
214 | capsPath = | 214 | capsPath = |
@@ -251,7 +251,7 @@ namespace OpenSim.Region.Environment.Scenes.Hypergrid | |||
251 | // return; | 251 | // return; |
252 | //} | 252 | //} |
253 | 253 | ||
254 | Thread.Sleep(5000); | 254 | Thread.Sleep(7000); |
255 | 255 | ||
256 | m_log.DebugFormat( | 256 | m_log.DebugFormat( |
257 | "[CAPS]: Sending new CAPS seed url {0} to client {1}", agent.CapsPath, avatar.UUID); | 257 | "[CAPS]: Sending new CAPS seed url {0} to client {1}", agent.CapsPath, avatar.UUID); |
@@ -293,7 +293,7 @@ namespace OpenSim.Region.Environment.Scenes.Hypergrid | |||
293 | /// | 293 | /// |
294 | if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY) || isHyperLink) | 294 | if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY) || isHyperLink) |
295 | { | 295 | { |
296 | Thread.Sleep(2000); | 296 | Thread.Sleep(5000); |
297 | CloseConnection(avatar.UUID); | 297 | CloseConnection(avatar.UUID); |
298 | } | 298 | } |
299 | // if (teleport success) // seems to be always success here | 299 | // if (teleport success) // seems to be always success here |