Skip to content

Commit

Permalink
Bump ppy.osu.Game from 2021.1113.0 to 2021.1120.0 (#1)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sam01101 <[email protected]>
  • Loading branch information
dependabot[bot] and 01101sam authored Nov 20, 2021
1 parent ac12169 commit d9281a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/RushDifficultyCalculator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace osu.Game.Rulesets.Rush
{
public class RushDifficultyCalculator : DifficultyCalculator
{
public RushDifficultyCalculator(Ruleset ruleset, WorkingBeatmap beatmap)
public RushDifficultyCalculator(IRulesetInfo ruleset, IWorkingBeatmap beatmap)
: base(ruleset, beatmap)
{
}
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/RushRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class RushRuleset : Ruleset

public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new RushBeatmapConverter(beatmap, this);

public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new RushDifficultyCalculator(this, beatmap);
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new RushDifficultyCalculator(RulesetInfo, beatmap);

public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new RushHealthProcessor();

Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/osu.Game.Rulesets.Rush.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2021.1113.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.1120.0" />
</ItemGroup>
</Project>

0 comments on commit d9281a9

Please sign in to comment.