Fix catcher dropping juice streams due to it considering ignored judgements

This commit is contained in:
Dean Herbert 2020-02-26 19:31:49 +09:00
parent 2c0b8ab95f
commit 2aa649e073
1 changed files with 3 additions and 0 deletions

View File

@ -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)