mirror of
https://github.com/ppy/osu
synced 2025-01-11 08:39:31 +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)
|
||||
{
|
||||
if (result.Judgement is IgnoreJudgement)
|
||||
return;
|
||||
|
||||
void runAfterLoaded(Action action)
|
||||
{
|
||||
if (lastPlateableFruit == null)
|
||||
|
Loading…
Reference in New Issue
Block a user