From 8f71861a6bbad4179701cfd67fc21111645031b8 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 12 Dec 2013 20:05:32 +1300 Subject: [PATCH] Remove mod argument from GenerateMinimap. It is redundant now that we enforce v6 maps. --- OpenRA.Utility/Command.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenRA.Utility/Command.cs b/OpenRA.Utility/Command.cs index 222b04fa89..190cca9037 100644 --- a/OpenRA.Utility/Command.cs +++ b/OpenRA.Utility/Command.cs @@ -297,8 +297,7 @@ namespace OpenRA.Utility public static void GenerateMinimap(string[] args) { var map = new Map(args[1]); - var mod = args.Length > 1 ? args[2] : map.RequiresMod; - Game.modData = new ModData(mod); + Game.modData = new ModData(map.RequiresMod); FileSystem.UnmountAll(); foreach (var dir in Game.modData.Manifest.Folders)