Fix broken english

This commit is contained in:
Bartłomiej Dach 2024-03-06 21:30:31 +01:00
parent 3121cf81e6
commit aa3cd402ca
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ private static long convertFromLegacyTotalScore(ScoreInfo score, Ruleset ruleset
// Calculate how many times the longest combo the user has achieved in the play can repeat
// without exceeding the combo portion in score V1 as achieved by the player.
// This it intentionally does not operate on object count and uses only score instead.
// This intentionally does not operate on object count and uses only score instead.
double maximumOccurrencesOfLongestCombo = Math.Floor(comboPortionInScoreV1 / comboPortionFromLongestComboInScoreV1);
double comboPortionFromRepeatedLongestCombosInScoreV1 = maximumOccurrencesOfLongestCombo * comboPortionFromLongestComboInScoreV1;