Change the close tmeout from 2 to 3 seconds on teleport. This may

prevent being logged out after a successful teleport.
avinationmerge
Melanie 2012-09-16 22:52:45 +02:00
parent 7d5942d154
commit a79bafaaaf
1 changed files with 1 additions and 1 deletions

View File

@ -648,7 +648,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
//
// This sleep can be increased if necessary. However, whilst it's active,
// an agent cannot teleport back to this region if it has teleported away.
Thread.Sleep(2000);
Thread.Sleep(3000);
sp.Scene.IncomingCloseAgent(sp.UUID);
}