diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs index 905764d..0923010 100644 --- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs | |||
@@ -251,7 +251,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
251 | { | 251 | { |
252 | //MainLog.Instance.Verbose("INTER", debugRegionName + ": SceneCommunicationService: Sending InterRegion Notification that region is up " + region.RegionName); | 252 | //MainLog.Instance.Verbose("INTER", debugRegionName + ": SceneCommunicationService: Sending InterRegion Notification that region is up " + region.RegionName); |
253 | 253 | ||
254 | List<SimpleRegionInfo> neighbours = m_commsProvider.GridService.RequestNeighbours(m_regionInfo.RegionLocX, m_regionInfo.RegionLocY); | 254 | |
255 | List<SimpleRegionInfo> neighbours = new List<SimpleRegionInfo>(); | ||
256 | |||
257 | neighbours = m_commsProvider.GridService.RequestNeighbours(m_regionInfo.RegionLocX, m_regionInfo.RegionLocY); | ||
255 | if (neighbours != null) | 258 | if (neighbours != null) |
256 | { | 259 | { |
257 | for (int i = 0; i < neighbours.Count; i++) | 260 | for (int i = 0; i < neighbours.Count; i++) |
@@ -264,6 +267,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
264 | d); | 267 | d); |
265 | } | 268 | } |
266 | } | 269 | } |
270 | |||
267 | //bool val = m_commsProvider.InterRegion.RegionUp(new SearializableRegionInfo(region)); | 271 | //bool val = m_commsProvider.InterRegion.RegionUp(new SearializableRegionInfo(region)); |
268 | } | 272 | } |
269 | 273 | ||