1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:07:25 +08:00

Fix incorrect maxBaseScore accounting due to silly oversight

This commit is contained in:
Dean Herbert 2022-10-24 15:54:09 +09:00
parent d5666ca717
commit f08270f6b0

View File

@ -191,7 +191,7 @@ namespace osu.Game.Tests.Visual.Gameplay
void applyHitV2(int baseScore)
{
maxBaseScore += baseScore;
maxBaseScore += base_great;
currentBaseScore += baseScore;
comboPortion += baseScore * (1 + ++currentCombo / 10.0);