Allow passing map author as an argument

This commit is contained in:
Gustas
2025-01-03 19:19:25 +02:00
committed by Matthias Mailänder
parent 459bbf0025
commit 6193da6899
5 changed files with 13 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ namespace OpenRA.Mods.Cnc.UtilityCommands
string IUtilityCommand.Name => "--import-td-map";
bool IUtilityCommand.ValidateArguments(string[] args) { return ValidateArguments(args); }
[Desc("FILENAME", "Convert a legacy Tiberian Dawn INI/MPR map to the OpenRA format.")]
[Desc("FILENAME [AUTHOR]", "Convert a legacy Tiberian Dawn INI/MPR map to the OpenRA format.")]
void IUtilityCommand.Run(Utility utility, string[] args) { Run(utility, args); }
public override void ValidateMapFormat(int format)