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:
Dean Herbert 2020-02-26 20:58:22 +09:00 committed by GitHub
commit b5306d16cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)