Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Flutterish committed Nov 18, 2023
1 parent 7ed7a91 commit e7eb1b8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
5 changes: 3 additions & 2 deletions Hitokori/HitokoriRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ public override HealthProcessor CreateHealthProcessor ( double drainStartTime )
public override ScoreProcessor CreateScoreProcessor () {
return base.CreateScoreProcessor();
}
public override StatisticRow[] CreateStatisticsForScore ( ScoreInfo score, IBeatmap playableBeatmap )
=> base.CreateStatisticsForScore( score, playableBeatmap );
public override StatisticItem[] CreateStatisticsForScore ( ScoreInfo score, IBeatmap playableBeatmap ) {
return base.CreateStatisticsForScore( score, playableBeatmap );
}

public override DrawableRuleset CreateDrawableRulesetWith ( IBeatmap beatmap, IReadOnlyList<Mod> mods = null )
=> new HitokoriDrawableRuleset( this, beatmap, mods );
Expand Down
2 changes: 0 additions & 2 deletions Hitokori/Mods/HitokoriModAuto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ public class HitokoriModAuto : ModAutoplay {
public override string Acronym => "AT";
public override LocalisableString Description => Localisation.ModStrings.AutoplayDescription;

public override bool UserPlayable => false;

public override double ScoreMultiplier => 1;

public override IconUsage? Icon => OsuIcon.ModAuto;
Expand Down
2 changes: 1 addition & 1 deletion Hitokori/osu.Game.Rulesets.Hitokori.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2023.419.0" />
<PackageReference Include="ppy.osu.Game" Version="2023.1114.1" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Tests/osu.Game.Rulesets.Hitokori.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0-preview-20220726-02" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0-alpha-net7.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23531-01" />
<PackageReference Include="NUnit" Version="4.0.0-beta.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit e7eb1b8

Please sign in to comment.