From 1760a12428e4ed47da0139bb4bdc8352b3528bcb Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Wed, 21 Jun 2017 00:50:30 +0200 Subject: [PATCH] Replace the wrong CURRENTENGINE description by OLDENGINE --- OpenRA.Mods.Common/UtilityCommands/UpgradeMapCommand.cs | 2 +- OpenRA.Mods.Common/UtilityCommands/UpgradeModCommand.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.