Merge branch 'master' into update-difficulty-brackets

This commit is contained in:
Dean Herbert
2019-03-05 10:16:18 +09:00
committed by GitHub
629 changed files with 7492 additions and 3398 deletions

View File

@ -53,6 +53,7 @@ namespace osu.Game.Beatmaps.Drawables
if (rating < 4.0) return DifficultyRating.Hard;
if (rating < 5.3) return DifficultyRating.Insane;
if (rating < 6.5) return DifficultyRating.Expert;
return DifficultyRating.ExpertPlus;
}