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

Remove unnecessary default value

This commit is contained in:
smoogipoo 2021-10-26 19:56:54 +09:00
parent 6c2d288dc7
commit 1147c6cbfc

View File

@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public class OsuModHidden : ModHidden, IHidesApproachCircles
{
[SettingSource("Only fade approach circles", "The main object body will not fade when enabled.")]
public Bindable<bool> OnlyFadeApproachCircles { get; } = new BindableBool(false);
public Bindable<bool> OnlyFadeApproachCircles { get; } = new BindableBool();
public override string Description => @"Play with no approach circles and fading circles/sliders.";
public override double ScoreMultiplier => 1.06;