1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 12:43:16 +08:00

Fix nullref

This commit is contained in:
Dan Balasescu 2021-06-08 18:23:03 +09:00 committed by GitHub
parent b287366c8b
commit d31e3e8f1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -203,7 +203,7 @@ namespace osu.Game.Scoring
/// </summary>
[JsonIgnore]
[NotMapped]
public bool IsLegacyScore => mods.OfType<ModClassic>().Any();
public bool IsLegacyScore => Mods.OfType<ModClassic>().Any();
public IEnumerable<HitResultDisplayStatistic> GetStatisticsForDisplay()
{