Remove all usage of BaseDifficulty (and access Difficulty instead)

This commit is contained in:
Dean Herbert
2022-01-18 22:57:39 +09:00
parent 66ed4270c0
commit 7f65f3a47f
34 changed files with 44 additions and 51 deletions

View File

@ -114,14 +114,14 @@ namespace osu.Game.Tests.Visual.Navigation
{
OnlineID = i * 1024,
Metadata = metadata,
BaseDifficulty = new BeatmapDifficulty(),
Difficulty = new BeatmapDifficulty(),
Ruleset = ruleset ?? new OsuRuleset().RulesetInfo
},
new BeatmapInfo
{
OnlineID = i * 2048,
Metadata = metadata,
BaseDifficulty = new BeatmapDifficulty(),
Difficulty = new BeatmapDifficulty(),
Ruleset = ruleset ?? new OsuRuleset().RulesetInfo
},
}