diff --git a/OpenRA.Game/MiniYaml.cs b/OpenRA.Game/MiniYaml.cs index efca3cff66..80b663edba 100644 --- a/OpenRA.Game/MiniYaml.cs +++ b/OpenRA.Game/MiniYaml.cs @@ -254,7 +254,7 @@ namespace OpenRA public static List FromString(string text, string fileName = "") { - return FromLines(text.Split(new[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries), fileName); + return FromLines(text.Split(new[] { "\r\n", "\n" }, StringSplitOptions.None), fileName); } public static List Merge(IEnumerable> sources)