mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Do not pass accent value on a reverted miss judgement
This commit is contained in:
@ -47,6 +47,12 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
if (!result.Judgement.AffectsCombo || !result.HasResult)
|
if (!result.Judgement.AffectsCombo || !result.HasResult)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (result.Type == HitResult.Miss)
|
||||||
|
{
|
||||||
|
updateCombo(result.ComboAtJudgement, null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
updateCombo(result.ComboAtJudgement, judgedObject.AccentColour.Value);
|
updateCombo(result.ComboAtJudgement, judgedObject.AccentColour.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user