mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Require all judgements to be present for map completion
This commit is contained in:
@ -247,6 +247,8 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
judgement.ComboAtJudgement = Combo;
|
judgement.ComboAtJudgement = Combo;
|
||||||
judgement.HighestComboAtJudgement = HighestCombo;
|
judgement.HighestComboAtJudgement = HighestCombo;
|
||||||
|
|
||||||
|
JudgedHits++;
|
||||||
|
|
||||||
if (judgement.AffectsCombo)
|
if (judgement.AffectsCombo)
|
||||||
{
|
{
|
||||||
switch (judgement.Result)
|
switch (judgement.Result)
|
||||||
@ -260,8 +262,6 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
Combo.Value++;
|
Combo.Value++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
JudgedHits++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (judgement.IsBonus)
|
if (judgement.IsBonus)
|
||||||
@ -285,7 +285,6 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
Combo.Value = judgement.ComboAtJudgement;
|
Combo.Value = judgement.ComboAtJudgement;
|
||||||
HighestCombo.Value = judgement.HighestComboAtJudgement;
|
HighestCombo.Value = judgement.HighestComboAtJudgement;
|
||||||
|
|
||||||
if (judgement.AffectsCombo)
|
|
||||||
JudgedHits--;
|
JudgedHits--;
|
||||||
|
|
||||||
if (judgement.IsBonus)
|
if (judgement.IsBonus)
|
||||||
|
Reference in New Issue
Block a user