Fix 1M score being possible with only GREATs in mania

This commit is contained in:
smoogipoo 2020-06-22 19:49:38 +09:00
parent 04e63c9f7e
commit 4d30761ce3
1 changed files with 3 additions and 1 deletions

View File

@ -25,8 +25,10 @@ protected override int NumericResultFor(HitResult result)
return 200;
case HitResult.Great:
case HitResult.Perfect:
return 300;
case HitResult.Perfect:
return 320;
}
}
}