From b8d2a04fe1031f61cb35a7788d4e3cf0f35d1b38 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Tue, 10 Oct 2017 19:24:24 +0900 Subject: [PATCH] Only split beatmap lines twice --- osu.Game/Beatmaps/Formats/OsuLegacyDecoder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Beatmaps/Formats/OsuLegacyDecoder.cs b/osu.Game/Beatmaps/Formats/OsuLegacyDecoder.cs index 2cf080746f..2493dab08c 100644 --- a/osu.Game/Beatmaps/Formats/OsuLegacyDecoder.cs +++ b/osu.Game/Beatmaps/Formats/OsuLegacyDecoder.cs @@ -679,7 +679,7 @@ namespace osu.Game.Beatmaps.Formats private KeyValuePair splitKeyVal(string line, char separator) { - var split = line.Trim().Split(separator); + var split = line.Trim().Split(new[] { separator }, 2); return new KeyValuePair (