Merge pull request #9921 from obrakmann/fix-weatheroverlay-typo

Fix typo in WeatherOverlayInfo
This commit is contained in:
Matthias Mailänder
2015-11-08 09:12:15 +01:00
5 changed files with 13 additions and 7 deletions

View File

@@ -2371,6 +2371,12 @@ namespace OpenRA.Mods.Common.UtilityCommands
TryUpdateColors(ref node.Value.Value);
}
if (engineVersion < 20151107 && depth == 2)
{
if (node.Key == "PaticleSize")
node.Key = "ParticleSize";
}
UpgradeActorRules(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}