Skip to content

Commit 93ddcb3

Browse files
authored
Merge pull request #156 from Beamographic/dependabot/nuget/ppy.osu.Game-2021.608.0
Bump ppy.osu.Game from 2021.602.0 to 2021.608.0
2 parents a117f1a + b27428b commit 93ddcb3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: osu.Game.Rulesets.Rush/Mods/RushModAutoplay.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
using System.Collections.Generic;
55
using osu.Game.Beatmaps;
66
using osu.Game.Rulesets.Mods;
7-
using osu.Game.Rulesets.Rush.Objects;
87
using osu.Game.Rulesets.Rush.Replays;
98
using osu.Game.Scoring;
109
using osu.Game.Users;
1110

1211
namespace osu.Game.Rulesets.Rush.Mods
1312
{
14-
public class RushModAutoplay : ModAutoplay<RushHitObject>
13+
public class RushModAutoplay : ModAutoplay
1514
{
1615
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
1716
{

Diff for: osu.Game.Rulesets.Rush/RushDifficultyCalculator.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Shane Woolcock. Licensed under the MIT Licence.
22
// See the LICENCE file in the repository root for full licence text.
33

4+
using System;
45
using System.Collections.Generic;
56
using System.Linq;
67
using osu.Game.Beatmaps;
@@ -25,6 +26,6 @@ protected override DifficultyAttributes CreateDifficultyAttributes(IBeatmap beat
2526

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

28-
protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods) => new Skill[0];
29+
protected override Skill[] CreateSkills(IBeatmap beatmap, Mod[] mods, double clockRate) => Array.Empty<Skill>();
2930
}
3031
}

Diff for: osu.Game.Rulesets.Rush/osu.Game.Rulesets.Rush.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
</EmbeddedResource>
3434
</ItemGroup>
3535
<ItemGroup>
36-
<PackageReference Include="ppy.osu.Game" Version="2021.602.0" />
36+
<PackageReference Include="ppy.osu.Game" Version="2021.608.0" />
3737
</ItemGroup>
3838
</Project>

0 commit comments

Comments
 (0)