diff options
author | Diva Canto | 2011-06-08 16:38:25 -0700 |
---|---|---|
committer | Diva Canto | 2011-06-08 16:38:25 -0700 |
commit | 2a46f756d673f4caa2049f2ddda219fdba810eed (patch) | |
tree | bc31e0731e81821f1bb1e12bd8b46b3fd85a35ae /OpenSim/Region/CoreModules/Hypergrid | |
parent | Reverting the [HG]MapModule to its buggy behavior above 4096. Ppl seem to pre... (diff) | |
download | opensim-SC_OLD-2a46f756d673f4caa2049f2ddda219fdba810eed.zip opensim-SC_OLD-2a46f756d673f4caa2049f2ddda219fdba810eed.tar.gz opensim-SC_OLD-2a46f756d673f4caa2049f2ddda219fdba810eed.tar.bz2 opensim-SC_OLD-2a46f756d673f4caa2049f2ddda219fdba810eed.tar.xz |
Fixed a compilation problem. Also added a lengthy comment on the Map hack, so that it never goes unnoticed again.
Diffstat (limited to 'OpenSim/Region/CoreModules/Hypergrid')
-rw-r--r-- | OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs index 0781de0..f066f83 100644 --- a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs +++ b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs | |||
@@ -59,7 +59,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid | |||
59 | 59 | ||
60 | #endregion | 60 | #endregion |
61 | 61 | ||
62 | protected override List<MapBlockData> GetAndSendBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag) | 62 | protected override void GetAndSendBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY, uint flag) |
63 | { | 63 | { |
64 | List<MapBlockData> mapBlocks = new List<MapBlockData>(); | 64 | List<MapBlockData> mapBlocks = new List<MapBlockData>(); |
65 | List<GridRegion> regions = m_scene.GridService.GetRegionRange(m_scene.RegionInfo.ScopeID, | 65 | List<GridRegion> regions = m_scene.GridService.GetRegionRange(m_scene.RegionInfo.ScopeID, |
@@ -96,7 +96,6 @@ namespace OpenSim.Region.CoreModules.Hypergrid | |||
96 | 96 | ||
97 | remoteClient.SendMapBlock(mapBlocks, 0); | 97 | remoteClient.SendMapBlock(mapBlocks, 0); |
98 | 98 | ||
99 | return mapBlocks; | ||
100 | } | 99 | } |
101 | 100 | ||
102 | 101 | ||