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

View File

@ -50,6 +50,9 @@ namespace osu.Game.Rulesets.Catch.UI
public void OnResult(DrawableCatchHitObject fruit, JudgementResult result) public void OnResult(DrawableCatchHitObject fruit, JudgementResult result)
{ {
if (result.Judgement is IgnoreJudgement)
return;
void runAfterLoaded(Action action) void runAfterLoaded(Action action)
{ {
if (lastPlateableFruit == null) if (lastPlateableFruit == null)