Update svn properties, minor formatting cleanup.

0.6.5-rc1
Jeff Ames 2009-03-10 00:03:26 +00:00
parent 278ae3477a
commit 112a1af3a6
2 changed files with 3 additions and 6 deletions

View File

@ -251,7 +251,7 @@ namespace OpenSim.Client.MXP.ClientStack
if (avatarExt.Body != null) if (avatarExt.Body != null)
{ {
foreach(OmBipedBoneOrientation boneOrientation in avatarExt.Body.BipedBoneOrientations) foreach (OmBipedBoneOrientation boneOrientation in avatarExt.Body.BipedBoneOrientations)
{ {
if (boneOrientation.Bone == OmBipedBones.Head) if (boneOrientation.Bone == OmBipedBones.Head)
{ {

View File

@ -26,7 +26,6 @@
* *
*/ */
using System.Collections.Generic; using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using log4net; using log4net;
@ -63,16 +62,13 @@ namespace OpenSim.Region.CoreModules.Hypergrid
this, "export-map", this, "export-map",
"export-map [<path>]", "export-map [<path>]",
"Save an image of the world map", HandleExportWorldMapConsoleCommand); "Save an image of the world map", HandleExportWorldMapConsoleCommand);
} }
public override string Name public override string Name
{ {
get { return "HGWorldMap"; } get { return "HGWorldMap"; }
} }
#endregion #endregion
/// <summary> /// <summary>
@ -143,10 +139,10 @@ namespace OpenSim.Region.CoreModules.Hypergrid
} }
} }
private void FillInMap(List<MapBlockData> mapBlocks, int minX, int minY, int maxX, int maxY) private void FillInMap(List<MapBlockData> mapBlocks, int minX, int minY, int maxX, int maxY)
{ {
for (int x = minX; x <= maxX; x++) for (int x = minX; x <= maxX; x++)
{
for (int y = minY; y <= maxY; y++) for (int y = minY; y <= maxY; y++)
{ {
MapBlockData mblock = mapBlocks.Find(delegate(MapBlockData mb) { return ((mb.X == x) && (mb.Y == y)); }); MapBlockData mblock = mapBlocks.Find(delegate(MapBlockData mb) { return ((mb.X == x) && (mb.Y == y)); });
@ -161,6 +157,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid
mapBlocks.Add(mblock); mapBlocks.Add(mblock);
} }
} }
}
} }
} }
} }