aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index bba5ae1..75f8c23 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1463,7 +1463,7 @@ namespace OpenSim.Region.Environment.Scenes
1463 } 1463 }
1464 1464
1465 /// <summary> 1465 /// <summary>
1466 /// Remove the given presence from the scene. 1466 /// Remove the given client from the scene.
1467 /// </summary> 1467 /// </summary>
1468 /// <param name="agentID"></param> 1468 /// <param name="agentID"></param>
1469 public override void RemoveClient(LLUUID agentID) 1469 public override void RemoveClient(LLUUID agentID)
@@ -1496,6 +1496,7 @@ namespace OpenSim.Region.Environment.Scenes
1496 1496
1497 if (m_capsHandlers.ContainsKey(agentID)) 1497 if (m_capsHandlers.ContainsKey(agentID))
1498 { 1498 {
1499 m_capsHandlers[agentID].DeregisterHandlers();
1499 m_capsHandlers.Remove(agentID); 1500 m_capsHandlers.Remove(agentID);
1500 } 1501 }
1501 } 1502 }