mirror of https://github.com/ppy/osu
Fix argon pro not showing slider tick judgements
Addresses https://github.com/ppy/osu/discussions/25968.
This commit is contained in:
parent
53cca61e61
commit
b6a331b2f7
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue