Move Length out of OnlineInfo

This commit is contained in:
iiSaLMaN
2019-07-07 20:25:36 +03:00
parent 3ea9629daf
commit 729f0901f7
10 changed files with 15 additions and 22 deletions

View File

@ -42,7 +42,7 @@ namespace osu.Game.Beatmaps
public double MaxStarDifficulty => Beatmaps?.Max(b => b.StarDifficulty) ?? 0;
public double MaxLength => Beatmaps?.Max(b => b.OnlineInfo.Length) ?? 0;
public double MaxLength => Beatmaps?.Max(b => b.Length) ?? 0;
[NotMapped]
public bool DeletePending { get; set; }