diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs index 203ab32..26b6b98 100644 --- a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs +++ b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs | |||
@@ -26,7 +26,6 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | |||
30 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
31 | using System.Reflection; | 30 | using System.Reflection; |
32 | using log4net; | 31 | using log4net; |
@@ -63,16 +62,13 @@ namespace OpenSim.Region.CoreModules.Hypergrid | |||
63 | this, "export-map", | 62 | this, "export-map", |
64 | "export-map [<path>]", | 63 | "export-map [<path>]", |
65 | "Save an image of the world map", HandleExportWorldMapConsoleCommand); | 64 | "Save an image of the world map", HandleExportWorldMapConsoleCommand); |
66 | |||
67 | } | 65 | } |
68 | 66 | ||
69 | |||
70 | public override string Name | 67 | public override string Name |
71 | { | 68 | { |
72 | get { return "HGWorldMap"; } | 69 | get { return "HGWorldMap"; } |
73 | } | 70 | } |
74 | 71 | ||
75 | |||
76 | #endregion | 72 | #endregion |
77 | 73 | ||
78 | /// <summary> | 74 | /// <summary> |
@@ -143,10 +139,10 @@ namespace OpenSim.Region.CoreModules.Hypergrid | |||
143 | } | 139 | } |
144 | } | 140 | } |
145 | 141 | ||
146 | |||
147 | private void FillInMap(List<MapBlockData> mapBlocks, int minX, int minY, int maxX, int maxY) | 142 | private void FillInMap(List<MapBlockData> mapBlocks, int minX, int minY, int maxX, int maxY) |
148 | { | 143 | { |
149 | for (int x = minX; x <= maxX; x++) | 144 | for (int x = minX; x <= maxX; x++) |
145 | { | ||
150 | for (int y = minY; y <= maxY; y++) | 146 | for (int y = minY; y <= maxY; y++) |
151 | { | 147 | { |
152 | MapBlockData mblock = mapBlocks.Find(delegate(MapBlockData mb) { return ((mb.X == x) && (mb.Y == y)); }); | 148 | MapBlockData mblock = mapBlocks.Find(delegate(MapBlockData mb) { return ((mb.X == x) && (mb.Y == y)); }); |
@@ -161,6 +157,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid | |||
161 | mapBlocks.Add(mblock); | 157 | mapBlocks.Add(mblock); |
162 | } | 158 | } |
163 | } | 159 | } |
160 | } | ||
164 | } | 161 | } |
165 | } | 162 | } |
166 | } | 163 | } |