Skip to content

Commit

Permalink
fix beatmap processor expecting to work with no hitobjects
Browse files Browse the repository at this point in the history
  • Loading branch information
Flutterish committed Sep 27, 2022
1 parent bd56baa commit ba6b532
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Hitokori/Beatmaps/HitokoriBeatmapConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ void PostProcess ( HitokoriBeatmap Beatmap ) {
foreach ( var tile in Beatmap.HitObjects ) {
tile.StylizeTiles();
}
tiles.First().FirstPoint.RefreshChain();
tiles.FirstOrDefault()?.FirstPoint.RefreshChain();
}

void GenerateBreaks ( HitokoriBeatmap Beatmap ) {
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="2022.923.1" />
<PackageReference Include="ppy.osu.Game" Version="2022.927.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 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.2.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.2.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0-alpha-net7.4" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit ba6b532

Please sign in to comment.