aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs
diff options
context:
space:
mode:
authordiva2009-01-01 19:29:30 +0000
committerdiva2009-01-01 19:29:30 +0000
commitba9d9a90198437b23e45994620d1f639f58f7fa9 (patch)
tree49cd6cf86367da2ea2e0d41c58f51d5725726134 /OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs
parentBeginning of true REST style for interregion comms, SendChildAgentUpdate only... (diff)
downloadopensim-SC_OLD-ba9d9a90198437b23e45994620d1f639f58f7fa9.zip
opensim-SC_OLD-ba9d9a90198437b23e45994620d1f639f58f7fa9.tar.gz
opensim-SC_OLD-ba9d9a90198437b23e45994620d1f639f58f7fa9.tar.bz2
opensim-SC_OLD-ba9d9a90198437b23e45994620d1f639f58f7fa9.tar.xz
Minor fix for HG request neighbors. Should not return hyperlink neighbors, only neighbors on the same grid. I'm still not sure if this is a bug or a feature, so this may change again.
My first commit of 2009 -- Happy New Year!
Diffstat (limited to 'OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs')
-rw-r--r--OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs b/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs
index b085774..83c087d 100644
--- a/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs
+++ b/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs
@@ -105,8 +105,8 @@ namespace OpenSim.Region.Communications.Hypergrid
105 public override List<SimpleRegionInfo> RequestNeighbours(uint x, uint y) 105 public override List<SimpleRegionInfo> RequestNeighbours(uint x, uint y)
106 { 106 {
107 List<SimpleRegionInfo> neighbours = m_remoteBackend.RequestNeighbours(x, y); 107 List<SimpleRegionInfo> neighbours = m_remoteBackend.RequestNeighbours(x, y);
108 List<SimpleRegionInfo> remotes = base.RequestNeighbours(x, y); 108 //List<SimpleRegionInfo> remotes = base.RequestNeighbours(x, y);
109 neighbours.AddRange(remotes); 109 //neighbours.AddRange(remotes);
110 110
111 return neighbours; 111 return neighbours;
112 } 112 }