1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 03:27:20 +08:00

Fix DifficultyCalculator using incorrect mods

This commit is contained in:
smoogipoo 2017-11-17 12:35:03 +09:00
parent 5781b45b39
commit cc1720241e

@ -39,7 +39,7 @@ namespace osu.Game.Beatmaps
foreach (var h in Objects) foreach (var h in Objects)
h.ApplyDefaults(beatmap.ControlPointInfo, beatmap.BeatmapInfo.BaseDifficulty); h.ApplyDefaults(beatmap.ControlPointInfo, beatmap.BeatmapInfo.BaseDifficulty);
ApplyMods(mods); ApplyMods(Mods);
PreprocessHitObjects(); PreprocessHitObjects();
} }