Skip to content

Commit

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

Bump ppy.osu.Game from 2022.216.0 to 2022.319.0
  • Loading branch information
LumpBloom7 authored Mar 19, 2022
2 parents 1fd334b + 8fb63fa commit 315c1b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Game.Rulesets.Hishigata.Tests/bin/Debug/net5.0/osu.Game.Rulesets.Hishigata.Tests.dll"
"${workspaceRoot}/osu.Game.Rulesets.Hishigata.Tests/bin/Debug/net6.0/osu.Game.Rulesets.Hishigata.Tests.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build tests (Debug)",
Expand All @@ -19,7 +19,7 @@
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Game.Rulesets.Hishigata.Tests/bin/Release/net5.0/osu.Game.Rulesets.Hishigata.Tests.dll"
"${workspaceRoot}/osu.Game.Rulesets.Hishigata.Tests/bin/Release/net6.0/osu.Game.Rulesets.Hishigata.Tests.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build tests (Release)",
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Hishigata/HishigataRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class HishigataRuleset : Ruleset
{
public override string Description => "hishigata";

public override ScoreProcessor CreateScoreProcessor() => new HishigataScoreProcessor();
public override ScoreProcessor CreateScoreProcessor() => new HishigataScoreProcessor(this);

public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null) => new DrawableHishigataRuleset(this, beatmap, mods);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ namespace osu.Game.Rulesets.Hishigata.Scoring
{
public class HishigataScoreProcessor : ScoreProcessor
{
public HishigataScoreProcessor(HishigataRuleset ruleset) : base(ruleset) { }
protected override double DefaultAccuracyPortion => 0.5;
protected override double DefaultComboPortion => 0.5;
}
Expand Down
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.216.0"/>
<PackageReference Include="ppy.osu.Game" Version="2022.319.0"/>
</ItemGroup>
</Project>

0 comments on commit 315c1b3

Please sign in to comment.