rename DemoTruck to AttackSuicides

generalize move to add Aircraft support
give it a description
don't require Explodes as it is just a soft dependency
use a regular self kill
This commit is contained in:
Matthias Mailänder
2016-01-01 18:26:17 +01:00
parent 01a873218d
commit 6900e4bad3
8 changed files with 25 additions and 20 deletions

View File

@@ -2883,6 +2883,12 @@ namespace OpenRA.Mods.Common.UtilityCommands
node.Key = "WithDockedOverlay" + node.Key.Substring(18);
}
if (engineVersion < 20160116)
{
if (node.Key == "DemoTruck")
node.Key = "AttackSuicides";
}
UpgradeActorRules(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}