Skip to content

Commit

Permalink
Merge pull request #195 from Beamographic/dependabot/nuget/ppy.osu.Ga…
Browse files Browse the repository at this point in the history
…me-2021.1108.0

Bump ppy.osu.Game from 2021.1105.0 to 2021.1108.0
  • Loading branch information
LumpBloom7 authored Nov 8, 2021
2 parents 7c19bbb + 47ff60a commit f70fed6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Rush/Mods/RushModAutoplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@

using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Rush.Replays;
using osu.Game.Scoring;
using osu.Game.Users;

namespace osu.Game.Rulesets.Rush.Mods
{
public class RushModAutoplay : ModAutoplay
{
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
{
ScoreInfo = new ScoreInfo { User = new User { Username = "Autoplay" } },
ScoreInfo = new ScoreInfo { User = new APIUser { Username = "Autoplay" } },
Replay = new RushAutoGenerator(beatmap).Generate()
};
}
Expand Down
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Rush/Mods/RushModCinema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@

using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Rush.Objects;
using osu.Game.Rulesets.Rush.Replays;
using osu.Game.Scoring;
using osu.Game.Users;

namespace osu.Game.Rulesets.Rush.Mods
{
public class RushModCinema : ModCinema<RushHitObject>
{
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
{
ScoreInfo = new ScoreInfo { User = new User { Username = "Autoplay" } },
ScoreInfo = new ScoreInfo { User = new APIUser { Username = "Autoplay" } },
Replay = new RushAutoGenerator(beatmap).Generate()
};
}
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.1105.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.1108.0" />
</ItemGroup>
</Project>

0 comments on commit f70fed6

Please sign in to comment.