Skip to content

Commit 614962a

Browse files
committed
Divide score by migration score multiplier when importing odr before version 8
1 parent 10617e6 commit 614962a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/com/osudroid/replay/ReplayImporter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ object ReplayImporter {
100100
if (mods.values.any { it is IModRequiresBeatmapDifficulty }) {
101101
info.copy(needsScoreMigration = true)
102102
} else {
103-
info.copy(score = (info.score / ModUtils.calculateScoreMultiplier(mods)).roundToInt())
103+
info.copy(score = (info.score / ModUtils.calculateMigrationScoreMultiplier(mods)).roundToInt())
104104
}
105105
} else {
106106
info

0 commit comments

Comments
 (0)