Fix ManiaDifficultyCalculator possibly failing due to nullref

This commit is contained in:
smoogipoo
2017-11-17 14:37:06 +09:00
parent ac6213d1fa
commit 95fd323c6b
5 changed files with 6 additions and 11 deletions

View File

@ -16,6 +16,6 @@ namespace osu.Game.Rulesets.Catch
public override double Calculate(Dictionary<string, string> categoryDifficulty = null) => 0;
protected override BeatmapConverter<CatchBaseHit> CreateBeatmapConverter() => new CatchBeatmapConverter();
protected override BeatmapConverter<CatchBaseHit> CreateBeatmapConverter(Beatmap beatmap) => new CatchBeatmapConverter();
}
}