From 4d7de9e7907aee7edc7c98cb9858a40effdf7b51 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 23 May 2010 15:45:57 +1200 Subject: [PATCH] type inference is fine too --- OpenRA.FileFormats/Map/Map.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"));