aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index bbf36f1..758a2eb 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3151,7 +3151,7 @@ namespace OpenSim.Region.Framework.Scenes
3151 m_sceneGraph.removeUserCount(!childagentYN); 3151 m_sceneGraph.removeUserCount(!childagentYN);
3152 3152
3153 if (CapsModule != null) 3153 if (CapsModule != null)
3154 CapsModule.RemoveCapsHandler(agentID); 3154 CapsModule.RemoveCaps(agentID);
3155 3155
3156 // REFACTORING PROBLEM -- well not really a problem, but just to point out that whatever 3156 // REFACTORING PROBLEM -- well not really a problem, but just to point out that whatever
3157 // this method is doing is HORRIBLE!!! 3157 // this method is doing is HORRIBLE!!!
@@ -3431,8 +3431,8 @@ namespace OpenSim.Region.Framework.Scenes
3431 3431
3432 if (CapsModule != null) 3432 if (CapsModule != null)
3433 { 3433 {
3434 CapsModule.NewUserConnection(agent); 3434 CapsModule.SetAgentCapsSeeds(agent);
3435 CapsModule.AddCapsHandler(agent.AgentID); 3435 CapsModule.CreateCaps(agent.AgentID);
3436 } 3436 }
3437 } 3437 }
3438 else 3438 else
@@ -3450,7 +3450,7 @@ namespace OpenSim.Region.Framework.Scenes
3450 sp.AdjustKnownSeeds(); 3450 sp.AdjustKnownSeeds();
3451 3451
3452 if (CapsModule != null) 3452 if (CapsModule != null)
3453 CapsModule.NewUserConnection(agent); 3453 CapsModule.SetAgentCapsSeeds(agent);
3454 } 3454 }
3455 } 3455 }
3456 3456