mirror of https://github.com/ppy/osu
Merge pull request #8005 from peppy/fix-catcher-dropping-streams
Fix catcher dropping juice streams due to it considering ignored judgements
This commit is contained in:
commit
b5306d16cf
|
@ -50,6 +50,9 @@ public CatcherArea(BeatmapDifficulty difficulty = null)
|
|||
|
||||
public void OnResult(DrawableCatchHitObject fruit, JudgementResult result)
|
||||
{
|
||||
if (result.Judgement is IgnoreJudgement)
|
||||
return;
|
||||
|
||||
void runAfterLoaded(Action action)
|
||||
{
|
||||
if (lastPlateableFruit == null)
|
||||
|
|
Loading…
Reference in New Issue