1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:47:29 +08:00

Make taiko OKs worth 150 points

This commit is contained in:
Dan Balasescu 2023-12-19 13:50:46 +09:00
parent c1b55c7fac
commit 35c0eaee1c
No known key found for this signature in database

View File

@ -33,6 +33,17 @@ namespace osu.Game.Rulesets.Taiko.Scoring
* strongScaleValue(result);
}
protected override double GetNumericResultFor(JudgementResult result)
{
switch (result.Type)
{
case HitResult.Ok:
return 150;
}
return base.GetNumericResultFor(result);
}
private double strongScaleValue(JudgementResult result)
{
if (result.HitObject is StrongNestedHitObject strong)