Fix argon pro not showing slider tick judgements

Addresses https://github.com/ppy/osu/discussions/25968.
This commit is contained in:
Bartłomiej Dach 2023-12-20 20:52:26 +01:00
parent 53cca61e61
commit b6a331b2f7
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public OsuArgonSkinTransformer(ISkin skin)
{
case GameplaySkinComponentLookup<HitResult> resultComponent:
// This should eventually be moved to a skin setting, when supported.
if (Skin is ArgonProSkin && resultComponent.Component >= HitResult.Great)
if (Skin is ArgonProSkin && (resultComponent.Component == HitResult.Great || resultComponent.Component == HitResult.Perfect))
return Drawable.Empty();
return new ArgonJudgementPiece(resultComponent.Component);