Merge pull request #25972 from bdach/argon-pro-no-slider-tick-judgements

This commit is contained in:
Dean Herbert 2023-12-21 10:01:42 +09:00 committed by GitHub
commit 4f1e6c31d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);