diff --git a/OpenRA.Mods.Common/UtilityCommands/UpgradeMapCommand.cs b/OpenRA.Mods.Common/UtilityCommands/UpgradeMapCommand.cs index 796b52b952..d7056ebf94 100644 --- a/OpenRA.Mods.Common/UtilityCommands/UpgradeMapCommand.cs +++ b/OpenRA.Mods.Common/UtilityCommands/UpgradeMapCommand.cs @@ -74,7 +74,7 @@ namespace OpenRA.Mods.Common.UtilityCommands map.Save(package); } - [Desc("MAP", "CURRENTENGINE", "Upgrade map rules to the latest engine version.")] + [Desc("MAP", "OLDENGINE", "Upgrade map rules to the latest engine version.")] void IUtilityCommand.Run(Utility utility, string[] args) { // HACK: The engine code assumes that Game.modData is set. diff --git a/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs b/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs index 009e8c4ac6..1568533c8d 100644 --- a/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs +++ b/OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs @@ -52,7 +52,7 @@ namespace OpenRA.Mods.Common.UtilityCommands } } - [Desc("CURRENTENGINE", "Upgrade mod rules to the latest engine version.")] + [Desc("OLDENGINE", "Upgrade mod rules to the latest engine version.")] void IUtilityCommand.Run(Utility utility, string[] args) { // HACK: The engine code assumes that Game.modData is set.