From 2c4f1817d3af1b20fe4e9002add599375c49bd95 Mon Sep 17 00:00:00 2001 From: Darius Wattimena Date: Sun, 14 Nov 2021 20:43:31 +0100 Subject: [PATCH] Fixed an issue where banana showers don't clear the plate when missing the last banana --- osu.Game.Rulesets.Catch/UI/CatcherArea.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs index 604e878782..0cbabac911 100644 --- a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs +++ b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs @@ -10,7 +10,6 @@ using osu.Game.Rulesets.Catch.Judgements; using osu.Game.Rulesets.Catch.Objects.Drawables; using osu.Game.Rulesets.Catch.Replays; using osu.Game.Rulesets.Judgements; -using osu.Game.Rulesets.Scoring; using osu.Game.Rulesets.UI; using osuTK; @@ -73,8 +72,8 @@ namespace osu.Game.Rulesets.Catch.UI { Catcher.OnNewResult(hitObject, result); - if (!result.Type.IsScorable()) - return; + // Ignore JuiceStreams and BananaShowers + if (!(hitObject is DrawablePalpableCatchHitObject)) return; if (hitObject.HitObject.LastInCombo) {