mirror of
https://github.com/ppy/osu.git
synced 2025-01-18 05:42:56 +08:00
Fixes unnecessary MaxValue definition for FinalFlashlightSize
This commit is contained in:
parent
c333226b9f
commit
fce32e91f7
@ -60,7 +60,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
StartingFlashlightSize.BindValueChanged(e =>
|
||||
{
|
||||
FinalFlashlightSize.MaxValue = e.NewValue;
|
||||
});
|
||||
}, true);
|
||||
}
|
||||
|
||||
[SettingSource("Starting flashlight size", "Multiplier applied to the default flashlight size.")]
|
||||
@ -70,7 +70,6 @@ namespace osu.Game.Rulesets.Mods
|
||||
public BindableFloat FinalFlashlightSize { get; } = new BindableFloat(0.625f)
|
||||
{
|
||||
MinValue = 0.5f,
|
||||
MaxValue = 1,
|
||||
Precision = 0.05f
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user