Skip to content

Commit

Permalink
Merge pull request #25972 from bdach/argon-pro-no-slider-tick-judgements
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Dec 21, 2023
2 parents c8c26df + fa4c905 commit 4f1e6c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4f1e6c3

Please sign in to comment.