Skip to content

Commit

Permalink
Merge pull request #23 from HelloYeew/update-version
Browse files Browse the repository at this point in the history
Fix breaking change and update osu! version
  • Loading branch information
Flutterish committed Jun 9, 2021
2 parents d876be5 + ec1ddbd commit 92e2df9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Hitokori/Difficulty/HitokoriDifficultyCalculator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected override IEnumerable<DifficultyHitObject> CreateDifficultyHitObjects (
}
}

protected override Skill[] CreateSkills ( IBeatmap beatmap, Mod[] mods ) {
protected override Skill[] CreateSkills ( IBeatmap beatmap, Mod[] mods, double clockRate ) {
return new Skill[] { new Reading( mods ), new Speed( mods ) };
}
}
Expand Down
2 changes: 1 addition & 1 deletion Hitokori/Mods/HitokoriModAuto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using osu.Game.Users;

namespace osu.Game.Rulesets.Hitokori.Mods {
public class HitokoriModAuto : ModAutoplay<HitokoriHitObject> {
public class HitokoriModAuto : ModAutoplay {
public override string Name => "Auto";
public override string Acronym => "AT";
public override string Description => "Let the cute bot do all the hard work";
Expand Down
2 changes: 1 addition & 1 deletion Hitokori/osu.Game.Rulesets.Hitokori.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2021.523.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.608.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 92e2df9

Please sign in to comment.