Rename Image -> Images.

This commit is contained in:
Paul Chote
2015-03-30 20:18:22 +01:00
parent 4be5334a0e
commit 84e85d8a5d
20 changed files with 3587 additions and 3583 deletions

View File

@@ -323,7 +323,7 @@ namespace OpenRA.Mods.D2k.UtilityCommands
// Get all templates from the tileset YAML file that have at least one frame and an Image property corresponding to the requested tileset
// Each frame is a tile from the Dune 2000 tileset files, with the Frame ID being the index of the tile in the original file
tileSetsFromYaml = tileSet.Templates.Where(t => t.Value.Frames != null
&& t.Value.Image[0].ToLower() == tilesetName.ToLower()).Select(ts => ts.Value).ToList();
&& t.Value.Images[0].ToLower() == tilesetName.ToLower()).Select(ts => ts.Value).ToList();
}
void FillMap()