Skip to content

Commit

Permalink
Merge pull request #7 from LumpBloom7/Update-dependencies
Browse files Browse the repository at this point in the history
Fix hold notes being broken
  • Loading branch information
swoolcock authored Jun 3, 2020
2 parents b512eda + f41eb33 commit f3e14b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/Beatmaps/RushBeatmapConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected override IEnumerable<RushHitObject> ConvertHitObject(HitObject origina
bothLanes = true;
}

if (original is IHasEndTime hasEndTime)
if (original is IHasDuration hasEndTime)
{
// etna sliders don't convert well, so just make them regular minions
if (hasEndTime.Duration <= etna_cutoff)
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/Objects/MiniBoss.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace osu.Game.Rulesets.Rush.Objects
{
public class MiniBoss : RushHitObject, IHasEndTime
public class MiniBoss : RushHitObject, IHasDuration
{
public static readonly int DEFAULT_REQUIRED_HITS = 5;

Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/Objects/NoteSheet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace osu.Game.Rulesets.Rush.Objects
{
public class NoteSheet : LanedHit, IHasEndTime
public class NoteSheet : LanedHit, IHasDuration
{
public double EndTime
{
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/Objects/NoteSheetBody.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace osu.Game.Rulesets.Rush.Objects
{
public class NoteSheetBody : LanedHit, IHasEndTime
public class NoteSheetBody : LanedHit, IHasDuration
{
public double EndTime
{
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/osu.Game.Rulesets.Rush.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<EmbeddedResource Include="Resources\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2020.523.0" />
<PackageReference Include="ppy.osu.Game" Version="2020.602.0" />
</ItemGroup>
</Project>

0 comments on commit f3e14b0

Please sign in to comment.