mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Fix catcher dropping juice streams due to it considering ignored judgements
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user