1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 13:33:52 +08:00

Add missing bonus type for taiko ruleset

This commit is contained in:
Dean Herbert 2020-10-08 12:52:52 +09:00
parent 6487f58e9a
commit d9089ef93c

View File

@ -167,6 +167,8 @@ namespace osu.Game.Rulesets.Taiko
HitResult.Ok,
HitResult.SmallTickHit,
HitResult.SmallBonus,
};
}
@ -176,6 +178,9 @@ namespace osu.Game.Rulesets.Taiko
{
case HitResult.SmallTickHit:
return "drum tick";
case HitResult.SmallBonus:
return "strong bonus";
}
return base.GetDisplayNameForHitResult(result);