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

Change name, acronym, description, and clarify settings

This commit is contained in:
Potenchill 2025-01-29 05:11:24 -06:00
parent 78eba42fa7
commit b0fc088f7d

View File

@ -9,17 +9,17 @@ namespace osu.Game.Rulesets.Mods
{
public abstract class ModAllCircles : Mod
{
public override string Name => "All Circles";
public override string Name => "Circles Only";
public override string Acronym => "CC";
public override string Acronym => "CO";
public override ModType Type => ModType.Conversion;
public override LocalisableString Description => "Oops! All Circles! Sliders get changed into circles.";
public override LocalisableString Description => "Sliders? Never heard of them.";
public override double ScoreMultiplier => ConvertEnds.Value ? 0.75 : 0.5;
[SettingSource("Convert Ends", "Should slider repeats/ends be converted")]
[SettingSource("Convert Ends", "Should slider repeats/ends become circles")]
public virtual BindableBool ConvertEnds { get; } = new BindableBool();
}
}