Don't skip lines in beatmap decoding

Was added in cc76c58f5f without any
specific reasoning. Likely not required (and will fix some storyboard
elements inside `.osu` files from not being correctly saved).
This commit is contained in:
Dean Herbert 2024-04-30 16:08:30 +08:00
parent 19897c4c07
commit ba9f4e4baf
No known key found for this signature in database
1 changed files with 0 additions and 2 deletions

View File

@ -167,8 +167,6 @@ private void applyLegacyDefaults(BeatmapInfo beatmapInfo)
beatmapInfo.SamplesMatchPlaybackRate = false;
}
protected override bool ShouldSkipLine(string line) => base.ShouldSkipLine(line) || line.StartsWith(' ') || line.StartsWith('_');
protected override void ParseLine(Beatmap beatmap, Section section, string line)
{
switch (section)