Skip to content

Commit

Permalink
Fix MissForcefully not considering the bonus object
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Oct 16, 2023
1 parent 7c49843 commit 14fedff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions osu.Game.Rulesets.Mania/Objects/Drawables/DrawableNote.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
ApplyResult(r => r.Type = result);
}

public override void MissForcefully()
{
bonusNote.TriggerResult(false);
base.MissForcefully();
}

/// <summary>
/// Some objects in mania may want to limit the max result.
/// </summary>
Expand Down

0 comments on commit 14fedff

Please sign in to comment.