mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Subtract a result from count if its been reverted
This commit is contained in:
@ -360,6 +360,12 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
|
|
||||||
JudgedHits--;
|
JudgedHits--;
|
||||||
|
|
||||||
|
if (result.Judgement.AffectsCombo)
|
||||||
|
{
|
||||||
|
if (result.Type != HitResult.None)
|
||||||
|
scoreResultCounts[result.Type] = scoreResultCounts.GetOrDefault(result.Type) - 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (result.Judgement.IsBonus)
|
if (result.Judgement.IsBonus)
|
||||||
{
|
{
|
||||||
if (result.IsHit)
|
if (result.IsHit)
|
||||||
|
Reference in New Issue
Block a user