From ba9d9a90198437b23e45994620d1f639f58f7fa9 Mon Sep 17 00:00:00 2001 From: diva Date: Thu, 1 Jan 2009 19:29:30 +0000 Subject: 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! --- OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs') diff --git a/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs b/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs index 329bae5..cabc630 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs @@ -115,8 +115,8 @@ namespace OpenSim.Region.Communications.Hypergrid public override List RequestNeighbours(uint x, uint y) { List neighbours = m_localBackend.RequestNeighbours(x, y); - List remotes = base.RequestNeighbours(x, y); - neighbours.AddRange(remotes); + //List remotes = base.RequestNeighbours(x, y); + //neighbours.AddRange(remotes); return neighbours; } -- cgit v1.1