diff --git a/OpenRA.FileFormats/Manifest.cs b/OpenRA.FileFormats/Manifest.cs index a1504bbc97..7752928577 100644 --- a/OpenRA.FileFormats/Manifest.cs +++ b/OpenRA.FileFormats/Manifest.cs @@ -61,7 +61,7 @@ namespace OpenRA.FileFormats static string[] YamlList(Dictionary yaml, string key) { if (!yaml.ContainsKey(key)) - return new string[ 0 ]; + return new string[] {}; return yaml[key].NodesDict.Keys.ToArray(); }