Skip to content

Commit

Permalink
Resolve breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Jun 8, 2021
1 parent e3ac484 commit 24b2f1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ protected override DifficultyAttributes CreateDifficultyAttributes(IBeatmap beat

protected override IEnumerable<DifficultyHitObject> CreateDifficultyHitObjects(IBeatmap beatmap, double clockRate) => Array.Empty<DifficultyHitObject>();

protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods) => Array.Empty<Skill>();
protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods, double clockRate) => Array.Empty<Skill>();
}
}
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Hishigata/Mods/HishigataModAutoplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace osu.Game.Rulesets.Hishigata.Mods
{
public class HishigataModAutoplay : ModAutoplay<HishigataHitObject>
public class HishigataModAutoplay : ModAutoplay
{
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
{
Expand Down

0 comments on commit 24b2f1e

Please sign in to comment.