Attempt at fixing the HG home jump by looking up hyperlink regions before grid-local regions.

This commit is contained in:
diva
2008-12-15 22:17:40 +00:00
parent 1110ee877f
commit 223b6f63af
2 changed files with 3 additions and 3 deletions

View File

@@ -121,9 +121,9 @@ namespace OpenSim.Region.Communications.Hypergrid
public override RegionInfo RequestNeighbourInfo(ulong regionHandle)
{
RegionInfo info = m_remoteBackend.RequestNeighbourInfo(regionHandle);
RegionInfo info = base.RequestNeighbourInfo(regionHandle);
if (info == null)
info = base.RequestNeighbourInfo(regionHandle);
info = m_remoteBackend.RequestNeighbourInfo(regionHandle);
return info;
}