Skip to content

Commit

Permalink
Merge pull request #130 from LumpBloom7:dependabot/nuget/ppy.osu.Game…
Browse files Browse the repository at this point in the history
…-2022.424.1

Bump ppy.osu.Game from 2022.319.0 to 2022.424.1
  • Loading branch information
LumpBloom7 authored Apr 27, 2022
2 parents 2914d82 + 5fd60f4 commit e2c79cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions osu.Game.Rulesets.Hishigata/Mods/HishigataModAutoplay.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Rulesets.Hishigata.Replays;
using osu.Game.Rulesets.Mods;
using osu.Game.Scoring;

namespace osu.Game.Rulesets.Hishigata.Mods
{
public class HishigataModAutoplay : ModAutoplay
{
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
{
ScoreInfo = new ScoreInfo { User = new APIUser { Username = "Hishi" } },
Replay = new HishigataAutoGenerator(beatmap).Generate(),
};
public override ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods)
=> new ModReplayData(new HishigataAutoGenerator(beatmap).Generate(), new ModCreatedUser { Username = "Hishi" });
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<AssemblyName>osu.Game.Rulesets.Hishigata</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2022.319.0"/>
<PackageReference Include="ppy.osu.Game" Version="2022.424.1"/>
</ItemGroup>
</Project>

0 comments on commit e2c79cd

Please sign in to comment.