Merge pull request #12004 from reaperrr/projectile-cleanup2

More projectile property streamlining and cleanups
This commit is contained in:
Paul Chote
2016-10-29 14:21:29 +01:00
committed by GitHub
20 changed files with 134 additions and 47 deletions

View File

@@ -497,6 +497,13 @@ namespace OpenRA.Mods.Common.UtilityCommands
node.Key = "Duration";
}
// Rename Bullet Angle to LaunchAngle
if (engineVersion < 20161016)
{
if (node.Key == "Angle")
node.Key = "LaunchAngle";
}
UpgradeWeaponRules(modData, engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}