diff --git a/OpenRA.FileFormats/Map/Map.cs b/OpenRA.FileFormats/Map/Map.cs index 759f1fdfe1..d30df00d82 100644 --- a/OpenRA.FileFormats/Map/Map.cs +++ b/OpenRA.FileFormats/Map/Map.cs @@ -128,9 +128,9 @@ namespace OpenRA.FileFormats root.Add(field, new MiniYaml(FieldSaver.FormatValue(this, f), null)); } - root.Add("Actors", MiniYaml.FromDictionary(Actors)); - root.Add("Waypoints", MiniYaml.FromDictionary(Waypoints)); - root.Add("Smudges", MiniYaml.FromList(Smudges)); + root.Add("Actors", MiniYaml.FromDictionary(Actors)); + root.Add("Waypoints", MiniYaml.FromDictionary(Waypoints)); + root.Add("Smudges", MiniYaml.FromList(Smudges)); root.Add("Rules", new MiniYaml(null, Rules)); SaveBinaryData(Path.Combine(filepath, "map.bin")); root.WriteToFile(Path.Combine(filepath, "map.yaml"));