1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 04:53:12 +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) void applyHitV2(int baseScore)
{ {
maxBaseScore += baseScore; maxBaseScore += base_great;
currentBaseScore += baseScore; currentBaseScore += baseScore;
comboPortion += baseScore * (1 + ++currentCombo / 10.0); comboPortion += baseScore * (1 + ++currentCombo / 10.0);