mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 16:52:54 +08:00
Only split beatmap lines twice
This commit is contained in:
parent
ad344eb719
commit
b8d2a04fe1
@ -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>
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user