mirror of https://github.com/ppy/osu
Fix catcher dropping juice streams due to it considering ignored judgements
This commit is contained in:
parent
2c0b8ab95f
commit
2aa649e073
|
@ -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