move overridability to SettingDescription method

This commit is contained in:
Liam DeVoe
2020-03-20 16:34:36 -04:00
parent 7bdbdd25f8
commit cda1efef0b
8 changed files with 67 additions and 15 deletions

View File

@ -28,7 +28,7 @@ namespace osu.Game.Rulesets.Mods
MaxValue = 10
};
public override string IconTooltip => $"{Name}{(Retries.IsDefault ? "" : $" ({Retries.Value} lives)")}";
public override string SettingDescription => Retries.IsDefault ? "" : $" ({Retries.Value} lives)";
private int retries;