Removed an attempt to set a user's presence to "Region 0" when they HG teleport to another grid.

a) This shouldn't have been done because at that point the user is still logged-in to the current grid. b) It's not necessary because the user will soon be logged-out completely. c) And it didn't even work because the MySQL database layer prevents setting the region to 0.
0.8.0.3
Oren Hurvitz 2014-04-20 12:49:53 +03:00
parent acc2c42a79
commit 06db136fbc
1 changed files with 0 additions and 3 deletions

View File

@ -280,9 +280,6 @@ namespace OpenSim.Services.HypergridService
else
{
success = m_GatekeeperConnector.CreateAgent(source, region, agentCircuit, (uint)Constants.TeleportFlags.ViaLogin, out myExternalIP, out reason);
if (success)
// Report them as nowhere
m_PresenceService.ReportAgent(agentCircuit.SessionID, UUID.Zero);
}
if (!success)