mirror of
https://github.com/ppy/osu
synced 2025-01-05 13:50:03 +00:00
Minor cleanups
This commit is contained in:
parent
e187c6453d
commit
fbb80edde1
@ -32,11 +32,13 @@ namespace osu.Game.Rulesets.Mania
|
||||
private readonly List<ManiaHitObjectDifficulty> difficultyHitObjects = new List<ManiaHitObjectDifficulty>();
|
||||
|
||||
public ManiaDifficultyCalculator(Beatmap beatmap)
|
||||
: base(beatmap) {
|
||||
: base(beatmap)
|
||||
{
|
||||
}
|
||||
|
||||
public ManiaDifficultyCalculator(Beatmap beatmap, Mod[] mods)
|
||||
: base(beatmap, mods) {
|
||||
: base(beatmap, mods)
|
||||
{
|
||||
}
|
||||
|
||||
public override double Calculate(Dictionary<string, double> categoryDifficulty = null)
|
||||
@ -58,7 +60,6 @@ namespace osu.Game.Rulesets.Mania
|
||||
double starRating = calculateDifficulty() * star_scaling_factor;
|
||||
|
||||
categoryDifficulty?.Add("Strain", starRating);
|
||||
// categoryDifficulty.Add("Hit window 300", 35 /*HitObjectManager.HitWindow300*/ / TimeRate);
|
||||
|
||||
return starRating;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user