mirror of https://github.com/ppy/osu
Fix 1M score being possible with only GREATs in mania
This commit is contained in:
parent
04e63c9f7e
commit
4d30761ce3
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue