1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 07:09:53 +08:00

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
Unverified
@@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
{
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);