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

@ -107,7 +107,7 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor.Checks
var beatmap = new Beatmap<HitObject>
{
HitObjects = hitObjects,
BeatmapInfo = new BeatmapInfo { BaseDifficulty = new BeatmapDifficulty(beatmapDifficulty) }
BeatmapInfo = new BeatmapInfo { Difficulty = new BeatmapDifficulty(beatmapDifficulty) }
};
return new BeatmapVerifierContext(beatmap, new TestWorkingBeatmap(beatmap));