mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 00:09:55 +09: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