mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 16:02:55 +08:00
Fixed an issue where banana showers don't clear the plate when missing the last banana
This commit is contained in:
parent
dbe76b529b
commit
2c4f1817d3
@ -10,7 +10,6 @@ using osu.Game.Rulesets.Catch.Judgements;
|
|||||||
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
||||||
using osu.Game.Rulesets.Catch.Replays;
|
using osu.Game.Rulesets.Catch.Replays;
|
||||||
using osu.Game.Rulesets.Judgements;
|
using osu.Game.Rulesets.Judgements;
|
||||||
using osu.Game.Rulesets.Scoring;
|
|
||||||
using osu.Game.Rulesets.UI;
|
using osu.Game.Rulesets.UI;
|
||||||
using osuTK;
|
using osuTK;
|
||||||
|
|
||||||
@ -73,8 +72,8 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
{
|
{
|
||||||
Catcher.OnNewResult(hitObject, result);
|
Catcher.OnNewResult(hitObject, result);
|
||||||
|
|
||||||
if (!result.Type.IsScorable())
|
// Ignore JuiceStreams and BananaShowers
|
||||||
return;
|
if (!(hitObject is DrawablePalpableCatchHitObject)) return;
|
||||||
|
|
||||||
if (hitObject.HitObject.LastInCombo)
|
if (hitObject.HitObject.LastInCombo)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user