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:
parent
6487f58e9a
commit
d9089ef93c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user