aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs4
-rw-r--r--OpenSim/Region/Framework/Scenes/Hypergrid/HGSceneCommunicationService.cs2
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs2
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs
index 723973c..a341f2f 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs
@@ -251,7 +251,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
251 return s.IncomingReleaseAgent(id); 251 return s.IncomingReleaseAgent(id);
252 } 252 }
253 } 253 }
254 //m_log.Debug("[LOCAL COMMS]: region not found in SendReleaseAgent"); 254 //m_log.Debug("[LOCAL COMMS]: region not found in SendReleaseAgent " + origin);
255 return false; 255 return false;
256 } 256 }
257 257
@@ -262,7 +262,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
262 262
263 foreach (Scene s in m_sceneList) 263 foreach (Scene s in m_sceneList)
264 { 264 {
265 if (s.RegionInfo.RegionHandle == destination.RegionHandle) 265 if (s.RegionInfo.RegionID == destination.RegionID)
266 { 266 {
267 //m_log.Debug("[LOCAL COMMS]: Found region to SendCloseAgent"); 267 //m_log.Debug("[LOCAL COMMS]: Found region to SendCloseAgent");
268 return s.IncomingCloseAgent(id); 268 return s.IncomingCloseAgent(id);
diff --git a/OpenSim/Region/Framework/Scenes/Hypergrid/HGSceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/Hypergrid/HGSceneCommunicationService.cs
index 2821be2..b27be80 100644
--- a/OpenSim/Region/Framework/Scenes/Hypergrid/HGSceneCommunicationService.cs
+++ b/OpenSim/Region/Framework/Scenes/Hypergrid/HGSceneCommunicationService.cs
@@ -283,7 +283,7 @@ namespace OpenSim.Region.Framework.Scenes.Hypergrid
283 m_scene.SimulationService.UpdateAgent(reg, agent); 283 m_scene.SimulationService.UpdateAgent(reg, agent);
284 284
285 m_log.DebugFormat( 285 m_log.DebugFormat(
286 "[CAPS]: Sending new CAPS seed url {0} to client {1}", agentCircuit.CapsPath, avatar.UUID); 286 "[CAPS]: Sending new CAPS seed url {0} to client {1}", capsPath, avatar.UUID);
287 287
288 288
289 /// 289 ///
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index ecbd7e3..48f0331 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3791,7 +3791,7 @@ namespace OpenSim.Region.Framework.Scenes
3791 public void SendReleaseAgent(UUID origin, UUID id, string uri) 3791 public void SendReleaseAgent(UUID origin, UUID id, string uri)
3792 { 3792 {
3793 //m_interregionCommsOut.SendReleaseAgent(regionHandle, id, uri); 3793 //m_interregionCommsOut.SendReleaseAgent(regionHandle, id, uri);
3794 m_simulationService.ReleaseAgent(origin, id, uri); 3794 SimulationService.ReleaseAgent(origin, id, uri);
3795 } 3795 }
3796 3796
3797 /// <summary> 3797 /// <summary>