1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:23:00 +08:00

Update comment to match implementation

This commit is contained in:
Bartłomiej Dach 2023-01-18 17:12:57 +01:00
parent 3b27774561
commit 7ba448b13c
No known key found for this signature in database

View File

@ -127,7 +127,7 @@ namespace osu.Game.Screens.Select.Carousel
if (comparison != 0) return comparison;
// If no online ID is available, fallback to our internal GUID for stability.
// If DateAdded fails to break the tie, fallback to our internal GUID for stability.
// This basically means it's a stable random sort.
return otherSet.BeatmapSet.ID.CompareTo(BeatmapSet.ID);
}