mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Only combo-incrementing results add to result count
This commit is contained in:
parent
0ab0406962
commit
39fb5712f1
@ -314,11 +314,11 @@ namespace osu.Game.Rulesets.Scoring
|
||||
|
||||
JudgedHits++;
|
||||
|
||||
if (result.Type != HitResult.None)
|
||||
scoreResultCounts[result.Type] = scoreResultCounts.GetOrDefault(result.Type) + 1;
|
||||
|
||||
if (result.Judgement.AffectsCombo)
|
||||
{
|
||||
if (result.Type != HitResult.None)
|
||||
scoreResultCounts[result.Type] = scoreResultCounts.GetOrDefault(result.Type) + 1;
|
||||
|
||||
switch (result.Type)
|
||||
{
|
||||
case HitResult.None:
|
||||
|
Loading…
Reference in New Issue
Block a user