mirror of
https://github.com/ppy/osu
synced 2025-02-17 10:57:03 +00:00
Fix catcher dropping juice streams due to it considering ignored judgements
This commit is contained in:
parent
2c0b8ab95f
commit
2aa649e073
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user