Fix dofficulty calculators not working and make mania set the correct key count for non-mania specific maps.

This commit is contained in:
smoogipooo
2017-08-22 13:34:58 +09:00
parent 4eec59f669
commit 88151eff3f
5 changed files with 26 additions and 7 deletions

View File

@ -169,7 +169,7 @@ namespace osu.Game.Rulesets.UI
throw new BeatmapInvalidForRulesetException($"{nameof(Beatmap)} can not be converted for the current ruleset (converter: {converter}).");
// Convert the beatmap
Beatmap = converter.Convert(workingBeatmap.Beatmap, isForCurrentRuleset);
Beatmap = converter.Convert(workingBeatmap.Beatmap);
// Apply difficulty adjustments from mods before using Difficulty.
foreach (var mod in Mods.OfType<IApplicableToDifficulty>())