mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Disallow zero size multiplier in flashlight implementations
This commit is contained in:
@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Mania.Mods
|
||||
[SettingSource("Flashlight size", "Multiplier applied to the default flashlight size.")]
|
||||
public override BindableNumber<float> SizeMultiplier { get; } = new BindableNumber<float>
|
||||
{
|
||||
MinValue = 0f,
|
||||
MinValue = 0.1f,
|
||||
MaxValue = 4.5f,
|
||||
Default = 1f,
|
||||
Value = 1f,
|
||||
|
Reference in New Issue
Block a user