Generate initial frozen renderables for all map-placed actors.

This commit is contained in:
Paul Chote
2016-04-17 16:30:28 -04:00
parent d7f140d5a3
commit 183e5ae7ab
6 changed files with 23 additions and 9 deletions

View File

@@ -770,6 +770,13 @@ namespace OpenRA.Mods.Common.UtilityCommands
}
}
if (engineVersion < 20160418)
{
// Removed FrozenUnderFog.StartsRevealed
if (node.Key == "FrozenUnderFog")
node.Value.Nodes.RemoveAll(x => x.Key == "StartsRevealed");
}
UpgradeActorRules(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}