1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 21:53:29 +08:00

Ensure Simplified Rhythm mod does not produce beatmaps with objects out of order

This is a last ditch safety.

This mod has more apparent issues but this is a first step of restoring
sanity.
This commit is contained in:
Bartłomiej Dach
2026-03-12 08:48:35 +01:00
Unverified
parent 94c9f16b27
commit f4807b3a42
@@ -122,6 +122,8 @@ namespace osu.Game.Rulesets.Taiko.Mods
}
}
}
taikoBeatmap.HitObjects.Sort((a, b) => a.StartTime.CompareTo(b.StartTime));
}
private int getSnapBetweenNotes(ControlPointInfo controlPointInfo, Hit currentNote, Hit nextNote)