aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
index efc5c39..5fcb4bc 100644
--- a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
+++ b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs
@@ -75,7 +75,6 @@ namespace OpenSim.Region.Environment.Modules.Communications.Local
75 return; 75 return;
76 76
77 Init(scene); 77 Init(scene);
78
79 } 78 }
80 79
81 public void PostInitialise() 80 public void PostInitialise()
@@ -119,17 +118,17 @@ namespace OpenSim.Region.Environment.Modules.Communications.Local
119 #region IInterregionComms 118 #region IInterregionComms
120 119
121 public bool SendCreateChildAgent(ulong regionHandle, AgentCircuitData aCircuit) 120 public bool SendCreateChildAgent(ulong regionHandle, AgentCircuitData aCircuit)
122 { 121 {
123 foreach (Scene s in m_sceneList) 122 foreach (Scene s in m_sceneList)
124 { 123 {
125 if (s.RegionInfo.RegionHandle == regionHandle) 124 if (s.RegionInfo.RegionHandle == regionHandle)
126 { 125 {
127 //m_log.Debug("[LOCAL COMMS]: Found region to send SendCreateChildAgent"); 126// m_log.DebugFormat("[LOCAL COMMS]: Found region {0} to send SendCreateChildAgent", regionHandle);
128 s.NewUserConnection(aCircuit); 127 s.NewUserConnection(aCircuit);
129 return true; 128 return true;
130 } 129 }
131 } 130 }
132 //m_log.Debug("[LOCAL COMMS]: region not found for SendCreateChildAgent"); 131// m_log.DebugFormat("[LOCAL COMMS]: Did not find region {0} for SendCreateChildAgent", regionHandle);
133 return false; 132 return false;
134 } 133 }
135 134