diff options
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
3 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs index 8afb8fe..b98bfaf 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | |||
@@ -382,7 +382,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
382 | client.OnLogout += OnLogout; | 382 | client.OnLogout += OnLogout; |
383 | } | 383 | } |
384 | 384 | ||
385 | private void ClientClosed(UUID AgentId) | 385 | private void ClientClosed(UUID AgentId, Scene scene) |
386 | { | 386 | { |
387 | // agent's client was closed. As we handle logout in OnLogout, this here has only to handle | 387 | // agent's client was closed. As we handle logout in OnLogout, this here has only to handle |
388 | // TPing away (root agent is closed) or TPing/crossing in a region far enough away (client | 388 | // TPing away (root agent is closed) or TPing/crossing in a region far enough away (client |
diff --git a/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs b/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs index a733585..31363e5 100644 --- a/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Groups/GroupsModule.cs | |||
@@ -198,7 +198,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Groups | |||
198 | remote_client.SendGroupNameReply(groupUUID, groupnamereply); | 198 | remote_client.SendGroupNameReply(groupUUID, groupnamereply); |
199 | } | 199 | } |
200 | 200 | ||
201 | private void OnClientClosed(UUID agentID) | 201 | private void OnClientClosed(UUID agentID, Scene scene) |
202 | { | 202 | { |
203 | lock (m_ClientMap) | 203 | lock (m_ClientMap) |
204 | { | 204 | { |
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Transfer/InventoryTransferModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Transfer/InventoryTransferModule.cs index 12f5d19..d862c06 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Transfer/InventoryTransferModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Transfer/InventoryTransferModule.cs | |||
@@ -368,7 +368,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Transfer | |||
368 | return false; | 368 | return false; |
369 | } | 369 | } |
370 | 370 | ||
371 | public void ClientLoggedOut(UUID agentID) | 371 | public void ClientLoggedOut(UUID agentID, Scene scene) |
372 | { | 372 | { |
373 | if (m_AgentRegions.ContainsKey(agentID)) | 373 | if (m_AgentRegions.ContainsKey(agentID)) |
374 | m_AgentRegions.Remove(agentID); | 374 | m_AgentRegions.Remove(agentID); |