diff options
author | Oren Hurvitz | 2014-04-20 12:49:53 +0300 |
---|---|---|
committer | Oren Hurvitz | 2014-04-21 16:56:14 +0100 |
commit | 06db136fbc1b35b3aee0702ae9a6a648e541c03c (patch) | |
tree | 2b116366f44be9f2b67edbc4095df4400656005f | |
parent | Better logging in PresenceService, to help diagnose presence problems. (diff) | |
download | opensim-SC-06db136fbc1b35b3aee0702ae9a6a648e541c03c.zip opensim-SC-06db136fbc1b35b3aee0702ae9a6a648e541c03c.tar.gz opensim-SC-06db136fbc1b35b3aee0702ae9a6a648e541c03c.tar.bz2 opensim-SC-06db136fbc1b35b3aee0702ae9a6a648e541c03c.tar.xz |
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.
-rw-r--r-- | OpenSim/Services/HypergridService/UserAgentService.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenSim/Services/HypergridService/UserAgentService.cs b/OpenSim/Services/HypergridService/UserAgentService.cs index 6ec2f19..2dba11d 100644 --- a/OpenSim/Services/HypergridService/UserAgentService.cs +++ b/OpenSim/Services/HypergridService/UserAgentService.cs | |||
@@ -280,9 +280,6 @@ namespace OpenSim.Services.HypergridService | |||
280 | else | 280 | else |
281 | { | 281 | { |
282 | success = m_GatekeeperConnector.CreateAgent(source, region, agentCircuit, (uint)Constants.TeleportFlags.ViaLogin, out myExternalIP, out reason); | 282 | success = m_GatekeeperConnector.CreateAgent(source, region, agentCircuit, (uint)Constants.TeleportFlags.ViaLogin, out myExternalIP, out reason); |
283 | if (success) | ||
284 | // Report them as nowhere | ||
285 | m_PresenceService.ReportAgent(agentCircuit.SessionID, UUID.Zero); | ||
286 | } | 283 | } |
287 | 284 | ||
288 | if (!success) | 285 | if (!success) |