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
parent
acc2c42a79
commit
06db136fbc
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue