1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Also mark UnknownMod as not user-playable

This commit is contained in:
Dean Herbert 2022-03-10 15:33:50 +09:00
parent 2e350a91cc
commit eaef27595c

View File

@ -15,6 +15,8 @@ namespace osu.Game.Rulesets.Mods
public override string Description => "This mod could not be resolved by the game.";
public override double ScoreMultiplier => 0;
public override bool UserPlayable => false;
public override ModType Type => ModType.System;
public UnknownMod(string acronym)