1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-22 06:07:20 +08:00

Merge pull request #14485 from peppy/fix-mania-hold-note-input-gobbling

Fix osu!mania hold notes eating input whenever on screen
This commit is contained in:
Dan Balasescu 2021-08-25 15:35:20 +09:00 committed by GitHub
commit d5fcc5f762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -275,9 +275,8 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
return false;
beginHoldAt(Time.Current - Head.HitObject.StartTime);
Head.UpdateResult();
return true;
return Head.UpdateResult();
}
private void beginHoldAt(double timeOffset)

View File

@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
Origin = Anchor.TopCentre;
}
public void UpdateResult() => base.UpdateResult(true);
public bool UpdateResult() => base.UpdateResult(true);
protected override void UpdateInitialTransforms()
{