1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:37:28 +08:00

Mark ModScoreV2 as invalid for multiplayer

Doesn't do much for the client; mostly a safety for osu-web's sake,
as without the change it could theoretically fail to validate the mod
properly in multiplayer contexts.
This commit is contained in:
Bartłomiej Dach 2023-10-31 16:16:57 +01:00
parent 456f4ebba2
commit a644c75957
No known key found for this signature in database

View File

@ -17,5 +17,7 @@ namespace osu.Game.Rulesets.Mods
public override LocalisableString Description => "Score set on earlier osu! versions with the V2 scoring algorithm active.";
public override double ScoreMultiplier => 1;
public override bool UserPlayable => false;
public override bool ValidForMultiplayer => false;
public override bool ValidForMultiplayerAsFreeMod => false;
}
}