mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
"Fix" mod copy failure
This commit is contained in:
@ -35,6 +35,9 @@ namespace osu.Game.Rulesets.Mods
|
||||
|
||||
private readonly BindableNumber<int> currentCombo = new BindableInt();
|
||||
|
||||
[SettingSource("Start muted", "Increase volume as combo builds.")]
|
||||
public BindableBool InverseMuting { get; } = new BindableBool();
|
||||
|
||||
[SettingSource("Enable metronome", "Add a metronome beat to help you keep track of the rhythm.")]
|
||||
public BindableBool EnableMetronome { get; } = new BindableBool(true);
|
||||
|
||||
@ -45,9 +48,6 @@ namespace osu.Game.Rulesets.Mods
|
||||
MaxValue = 500,
|
||||
};
|
||||
|
||||
[SettingSource("Start muted", "Increase volume as combo builds.")]
|
||||
public BindableBool InverseMuting { get; } = new BindableBool();
|
||||
|
||||
[SettingSource("Mute hit sounds", "Hit sounds are also muted alongside the track.")]
|
||||
public BindableBool AffectsHitSounds { get; } = new BindableBool(true);
|
||||
|
||||
|
Reference in New Issue
Block a user