Skip to content

Commit

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

Bump ppy.osu.Game from 2021.1028.0 to 2021.1103.1
  • Loading branch information
LumpBloom7 authored Nov 3, 2021
2 parents cc1bd95 + 0a4e1f7 commit 84cb76f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Sentakki/Objects/Hold.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public class Hold : SentakkiLanedHitObject, IHasDuration
{
protected override bool NeedBreakSample => false;

private List<IList<HitSampleInfo>> nodeSamples = new List<IList<HitSampleInfo>>();
private IList<IList<HitSampleInfo>> nodeSamples = new List<IList<HitSampleInfo>>();

public List<IList<HitSampleInfo>> NodeSamples
public IList<IList<HitSampleInfo>> NodeSamples
{
get => nodeSamples;
set
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Sentakki/Objects/Slide.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public double Duration
set => throw new NotSupportedException();
}

public List<IList<HitSampleInfo>> NodeSamples = new List<IList<HitSampleInfo>>();
public IList<IList<HitSampleInfo>> NodeSamples = new List<IList<HitSampleInfo>>();

public double EndTime => StartTime + Duration;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>osu.Game.Rulesets.Sentakki</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2021.1028.0"/>
<PackageReference Include="ppy.osu.Game" Version="2021.1103.1"/>
</ItemGroup>

<!--Since we aren't changing the assembly name, we use the assembly title to indicate whether it is a dev build-->
Expand Down

0 comments on commit 84cb76f

Please sign in to comment.