diff --git a/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs b/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs index 7e7996a30c..fc0e418094 100644 --- a/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs +++ b/OpenRA.Mods.Common/UtilityCommands/UpgradeRules.cs @@ -1308,7 +1308,7 @@ namespace OpenRA.Mods.Common.UtilityCommands if (engineVersion < 20171212) { var mod = modData.Manifest.Id; - if (mod == "cnc" || mod == "ra" || mod == "d2k") + if (mod == "cnc" || mod == "ra" || mod == "d2k" || mod == "ts") { if (node.Key == "HP" && parent.Key == "Health") { @@ -1754,7 +1754,7 @@ namespace OpenRA.Mods.Common.UtilityCommands if (engineVersion < 20171212) { var mod = modData.Manifest.Id; - if (mod == "cnc" || mod == "ra" || mod == "d2k") + if (mod == "cnc" || mod == "ra" || mod == "d2k" || mod == "ts") { if (node.Key == "Damage" && (parent.Value.Value == "SpreadDamage" || parent.Value.Value == "TargetDamage")) {