mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 10:12:54 +08:00
Fix break parsing
This commit is contained in:
parent
f4c505709a
commit
241e336c21
@ -264,7 +264,7 @@ namespace osu.Game.Beatmaps.Formats
|
||||
var breakEvent = new BreakPeriod
|
||||
{
|
||||
StartTime = start,
|
||||
EndTime = Math.Max(start, getOffsetTime(Parsing.ParseDouble(split[1])))
|
||||
EndTime = Math.Max(start, getOffsetTime(Parsing.ParseDouble(split[2])))
|
||||
};
|
||||
|
||||
if (!breakEvent.HasEffect)
|
||||
|
Loading…
Reference in New Issue
Block a user