1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:02:55 +08:00

minor look changes

This commit is contained in:
Givikap120 2024-02-20 13:11:19 +02:00
parent a4288e7ecc
commit 8199a49ee2
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ namespace osu.Game.Overlays.Mods
[Resolved]
protected Bindable<IReadOnlyList<Mod>> Mods { get; private set; } = null!;
protected virtual IEnumerable<Mod> SelectedMods => Mods.Value;
public BindableBool Collapsed { get; } = new BindableBool(true);

View File

@ -464,8 +464,8 @@ namespace osu.Game.Overlays.Mods
foreach (var mod in AllSelectedMods)
multiplier *= mod.ScoreMultiplier;
rankingInformationDisplay.Ranked.Value = AllSelectedMods.All(m => m.Ranked);
rankingInformationDisplay.ModMultiplier.Value = multiplier;
rankingInformationDisplay.Ranked.Value = AllSelectedMods.All(m => m.Ranked);
}
private void updateCustomisation()