Open 120-cell opened 11 months ago
can you share a beatmap id that reproduces this?
https://osu.ppy.sh/beatmapsets/2078794#mania/4353819 As far as I can tell, any map with a hold note will cause this issue.
I'm using the AUR release, maybe that changes things, but this code looks the same as on my installation: https://github.com/llllllllll/slider/blob/040e17feae46d3b4815b4f4fc93b2bd54ca1ec4a/slider/beatmap.py#L977-L991
replacing
end_time, *rest = rest
with
end_time_hit_sample, *rest = rest
end_time, *hit_sample = end_time_hit_sample.split(':')
fixed it for me.
The parser for mania hold notes assumes that endTime and hitSample are separated by a comma, when they are actually separated by a colon.
The result is