From cf8a7cbbe85ead3c22771cc5f4c3941642b88a82 Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Fri, 4 Apr 2025 16:33:13 +0900 Subject: [PATCH] Disallow mania cover mod --- osu.Game.Rulesets.Mania/Mods/ManiaModCover.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/osu.Game.Rulesets.Mania/Mods/ManiaModCover.cs b/osu.Game.Rulesets.Mania/Mods/ManiaModCover.cs index eb243bfab7..db4e4c30bd 100644 --- a/osu.Game.Rulesets.Mania/Mods/ManiaModCover.cs +++ b/osu.Game.Rulesets.Mania/Mods/ManiaModCover.cs @@ -29,6 +29,9 @@ namespace osu.Game.Rulesets.Mania.Mods public override bool Ranked => false; + // Ideally we'd allow this, but it's not easy to handle due to the change in acronym from the base class. + public override bool ValidForFreestyle => false; + [SettingSource("Coverage", "The proportion of playfield height that notes will be hidden for.")] public override BindableNumber Coverage { get; } = new BindableFloat(0.5f) {