1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 04:41:54 +08:00

Merge pull request #9337 from smoogipoo/mania-perfect-value

Fix 1M score being possible with only GREATs in mania
This commit is contained in:
Dean Herbert
2020-06-22 22:21:01 +09:00
committed by GitHub
Unverified
@@ -25,8 +25,10 @@ namespace osu.Game.Rulesets.Mania.Judgements
return 200;
case HitResult.Great:
case HitResult.Perfect:
return 300;
case HitResult.Perfect:
return 320;
}
}
}