1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 18:32:55 +08:00

Fix post-merge errors

This commit is contained in:
smoogipoo 2019-02-19 14:34:02 +09:00
parent 0001b6204b
commit ade5763160
2 changed files with 1 additions and 7 deletions

View File

@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Osu.Difficulty
{
@ -13,10 +12,5 @@ namespace osu.Game.Rulesets.Osu.Difficulty
public double ApproachRate;
public double OverallDifficulty;
public int MaxCombo;
public OsuDifficultyAttributes(Mod[] mods)
: base(mods)
{
}
}
}

View File

@ -69,7 +69,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
new Speed()
};
protected override DifficultyAttributes CreateDifficultyAttributes(Mod[] mods) => new OsuDifficultyAttributes(mods);
protected override DifficultyAttributes CreateDifficultyAttributes() => new OsuDifficultyAttributes();
protected override Mod[] DifficultyAdjustmentMods => new Mod[]
{