Convert length retrieved from online to milliseconds

This commit is contained in:
iiSaLMaN
2019-07-09 17:53:34 +03:00
parent 1485c273ab
commit e73f22eff8
3 changed files with 4 additions and 3 deletions

View File

@ -41,7 +41,7 @@ namespace osu.Game.Beatmaps
public double MaxStarDifficulty => Beatmaps?.Max(b => b.StarDifficulty) ?? 0;
/// <summary>
/// The maximum playable length of all beatmaps in this set.
/// The maximum playable length in milliseconds of all beatmaps in this set.
/// </summary>
public double MaxLength => Beatmaps?.Max(b => b.Length) ?? 0;