Fix typo in WeatherOverlayInfo

This commit is contained in:
Oliver Brakmann
2015-11-07 19:05:12 +01:00
parent 5df01b2137
commit 27d915046c
5 changed files with 13 additions and 7 deletions

View File

@@ -2360,6 +2360,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);
}
}