mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 16:32:54 +08:00
Mark system mods as invalid for selection in mod select overlay
This commit is contained in:
parent
5303023e57
commit
c476843a83
@ -447,7 +447,7 @@ namespace osu.Game.Overlays.Mods
|
|||||||
private void filterMods()
|
private void filterMods()
|
||||||
{
|
{
|
||||||
foreach (var modState in AllAvailableMods)
|
foreach (var modState in AllAvailableMods)
|
||||||
modState.ValidForSelection.Value = modState.Mod.HasImplementation && IsValidMod.Invoke(modState.Mod);
|
modState.ValidForSelection.Value = modState.Mod.Type != ModType.System && modState.Mod.HasImplementation && IsValidMod.Invoke(modState.Mod);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateMultiplier()
|
private void updateMultiplier()
|
||||||
|
Loading…
Reference in New Issue
Block a user