1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 08:22:56 +08:00

Show only the break length instead of total minute breaks

This commit is contained in:
Dean Herbert 2023-07-25 17:02:27 +09:00
parent 480163ec2e
commit 9edaa6909e

View File

@ -371,7 +371,7 @@ namespace osu.Game.Screens.Select
{ {
new InfoLabel(new BeatmapStatistic new InfoLabel(new BeatmapStatistic
{ {
Name = $"Length (Drain: {playableBeatmap.CalculateDrainLength().ToFormattedDuration().ToString()})", Name = $"Length (Breaks: {playableBeatmap.TotalBreakTime.ToFormattedDuration().ToString()})",
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Length), CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Length),
Content = working.BeatmapInfo.Length.ToFormattedDuration().ToString(), Content = working.BeatmapInfo.Length.ToFormattedDuration().ToString(),
}), }),