1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 06:52:55 +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
commit d340ff7f32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,8 +25,10 @@ namespace osu.Game.Rulesets.Mania.Judgements
return 200; return 200;
case HitResult.Great: case HitResult.Great:
case HitResult.Perfect:
return 300; return 300;
case HitResult.Perfect:
return 320;
} }
} }
} }