mirror of
https://github.com/ppy/osu.git
synced 2026-05-29 07:29:53 +08:00
Only split beatmap lines twice
This commit is contained in:
@@ -679,7 +679,7 @@ namespace osu.Game.Beatmaps.Formats
|
||||
|
||||
private KeyValuePair<string, string> splitKeyVal(string line, char separator)
|
||||
{
|
||||
var split = line.Trim().Split(separator);
|
||||
var split = line.Trim().Split(new[] { separator }, 2);
|
||||
|
||||
return new KeyValuePair<string, string>
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user