diff --git a/OpenRA.Utility/Command.cs b/OpenRA.Utility/Command.cs index cc9bcea144..dc2c81eaac 100644 --- a/OpenRA.Utility/Command.cs +++ b/OpenRA.Utility/Command.cs @@ -1,4 +1,4 @@ -#region Copyright & License Information +#region Copyright & License Information /* * Copyright 2007-2012 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made @@ -286,12 +286,12 @@ namespace OpenRA.Utility Console.WriteLine(); Console.WriteLine("```"); - } - - public static void GetMapHash(string[] args) - { - var result = new Map(args[1]).Uid; - Console.WriteLine(result); + } + + public static void GetMapHash(string[] args) + { + var result = new Map(args[1]).Uid; + Console.WriteLine(result); } } } diff --git a/OpenRA.Utility/Program.cs b/OpenRA.Utility/Program.cs index 89c4f453de..d3a9b77f3f 100644 --- a/OpenRA.Utility/Program.cs +++ b/OpenRA.Utility/Program.cs @@ -1,4 +1,4 @@ -#region Copyright & License Information +#region Copyright & License Information /* * Copyright 2007-2012 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made @@ -60,7 +60,7 @@ namespace OpenRA.Utility Console.WriteLine(" --extract MOD[,MOD]* FILES Extract files from mod packages to the current directory"); Console.WriteLine(" --remap SRCMOD:PAL DESTMOD:PAL SRCSHP DESTSHP Remap SHPs to another palette"); Console.WriteLine(" --transpose SRCSHP DESTSHP START N M [START N M ...] Transpose the N*M block of frames starting at START."); - Console.WriteLine(" --docs MOD Generate trait documentation in MarkDown format."); + Console.WriteLine(" --docs MOD Generate trait documentation in MarkDown format."); Console.WriteLine(" --map-hash MAPFILE Generate hash of specified oramap file."); }