mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Add missing bonus type for taiko ruleset
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user