Fix code inspections

This commit is contained in:
Dean Herbert
2019-12-25 15:20:10 +09:00
parent 52ba0cd816
commit 911dc2d98d
3 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Mods
public override Type[] IncompatibleMods => new[] { typeof(ModEasy), typeof(ModHardRock) };
[SettingSource("Drain Rate", "Override a beatmap's set HP.")]
public BindableNumber<float> DrainRate { get; } = new BindableFloat()
public BindableNumber<float> DrainRate { get; } = new BindableFloat
{
Precision = 0.1f,
MinValue = 1,
@ -36,7 +36,7 @@ namespace osu.Game.Rulesets.Mods
};
[SettingSource("Overall Difficulty", "Override a beatmap's set OD.")]
public BindableNumber<float> OverallDifficulty { get; } = new BindableFloat()
public BindableNumber<float> OverallDifficulty { get; } = new BindableFloat
{
Precision = 0.1f,
MinValue = 1,