Fixed a compilation problem. Also added a lengthy comment on the Map hack, so that it never goes unnoticed again.

This commit is contained in:
Diva Canto
2011-06-08 16:38:25 -07:00
parent 1bd712c541
commit 2a46f756d6
2 changed files with 51 additions and 39 deletions

View File

@@ -59,7 +59,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid
#endregion
protected override List<MapBlockData> GetAndSendBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag)
protected override void GetAndSendBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag)
{
List<MapBlockData> mapBlocks = new List<MapBlockData>();
List<GridRegion> regions = m_scene.GridService.GetRegionRange(m_scene.RegionInfo.ScopeID,
@@ -96,7 +96,6 @@ namespace OpenSim.Region.CoreModules.Hypergrid
remoteClient.SendMapBlock(mapBlocks, 0);
return mapBlocks;
}