Quick and esy way to get the hash of map files using OpenRA.Utility

This commit is contained in:
Dan9550
2013-08-11 12:47:34 +10:00
parent 69130fea95
commit 1b6d79888f
2 changed files with 9 additions and 1 deletions

View File

@@ -530,6 +530,12 @@ namespace OpenRA.Utility
Console.WriteLine();
Console.WriteLine("```");
}
public static void GetMapHash(string[] args)
{
var result = new Map(args[1]).Uid;
Console.WriteLine(result);
}
}
}