From 7d837a9beafe5eba69a199dcaf7e48c24b5255c8 Mon Sep 17 00:00:00 2001 From: diva Date: Sun, 21 Dec 2008 19:00:30 +0000 Subject: Slowing TPs down a bit further. --- OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs') diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs index bce87b7..2b30c0d 100644 --- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs @@ -784,7 +784,7 @@ namespace OpenSim.Region.Environment.Scenes agent.child = true; if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY)) { - Thread.Sleep(1000); + Thread.Sleep(2000); // brand new agent agent.CapsPath = Util.GetRandomCapsPath(); @@ -794,7 +794,7 @@ namespace OpenSim.Region.Environment.Scenes return; } - Thread.Sleep(2000); + Thread.Sleep(3000); // TODO Should construct this behind a method capsPath = @@ -835,7 +835,7 @@ namespace OpenSim.Region.Environment.Scenes // return; //} - Thread.Sleep(5000); + Thread.Sleep(7000); m_log.DebugFormat( "[CAPS]: Sending new CAPS seed url {0} to client {1}", capsPath, avatar.UUID); @@ -866,7 +866,7 @@ namespace OpenSim.Region.Environment.Scenes if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY)) { - Thread.Sleep(2000); + Thread.Sleep(5000); CloseConnection(avatar.UUID); } -- cgit v1.1