allow `ModMuted` to ranked when setting adjusted

This commit is contained in:
cdwcgt 2024-02-12 21:18:31 +09:00
parent 7bc571dd51
commit 1944a12634
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public abstract class ModMuted : Mod
public override LocalisableString Description => "Can you still feel the rhythm without music?";
public override ModType Type => ModType.Fun;
public override double ScoreMultiplier => 1;
public override bool Ranked => UsesDefaultConfiguration;
public override bool Ranked => true;
}
public abstract class ModMuted<TObject> : ModMuted, IApplicableToDrawableRuleset<TObject>, IApplicableToTrack, IApplicableToScoreProcessor