mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
Assorted bug fixes related to hyperlinking
This commit is contained in:
@@ -188,7 +188,16 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid
|
||||
return rinfo;
|
||||
}
|
||||
|
||||
// Let's not override GetRegionsByName -- let's get them all from the grid server
|
||||
public override List<GridRegion> GetRegionsByName(UUID scopeID, string name, int maxNumber)
|
||||
{
|
||||
List<GridRegion> rinfo = m_LocalGridService.GetRegionsByName(scopeID, name, maxNumber);
|
||||
List<GridRegion> grinfo = base.GetRegionsByName(scopeID, name, maxNumber);
|
||||
|
||||
if (grinfo != null)
|
||||
rinfo.AddRange(grinfo);
|
||||
return rinfo;
|
||||
}
|
||||
|
||||
// Let's not override GetRegionRange -- let's get them all from the grid server
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user