1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 01:19:52 +08:00

Merge pull request #13237 from Susko3/fix-capitalization-of-catch-results

Fix capitalisation of osu!catch HitResults
This commit is contained in:
Dean Herbert
2021-05-29 02:17:34 +09:00
committed by GitHub
Unverified
+3 -3
View File
@@ -161,13 +161,13 @@ namespace osu.Game.Rulesets.Catch
switch (result)
{
case HitResult.LargeTickHit:
return "large droplet";
return "Large droplet";
case HitResult.SmallTickHit:
return "small droplet";
return "Small droplet";
case HitResult.LargeBonus:
return "banana";
return "Banana";
}
return base.GetDisplayNameForHitResult(result);