Skip to content

Commit

Permalink
Seal ModAutoplay playability flags
Browse files Browse the repository at this point in the history
Can't do much more than that due to the unfortunate fact of Cinema
inheriting from Autoplay.
  • Loading branch information
bdach committed Oct 31, 2023
1 parent 7ea298a commit 3a2645e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions osu.Game/Rulesets/Mods/ModAutoplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public abstract class ModAutoplay : Mod, ICreateReplayData
public override LocalisableString Description => "Watch a perfect automated play through the song.";
public override double ScoreMultiplier => 1;

public override bool UserPlayable => false;
public override bool ValidForMultiplayer => false;
public override bool ValidForMultiplayerAsFreeMod => false;
public sealed override bool UserPlayable => false;
public sealed override bool ValidForMultiplayer => false;
public sealed override bool ValidForMultiplayerAsFreeMod => false;

public override Type[] IncompatibleMods => new[] { typeof(ModCinema), typeof(ModRelax), typeof(ModAdaptiveSpeed) };

Expand Down

0 comments on commit 3a2645e

Please sign in to comment.