Reduce ramp mod multipliers in line with other difficulty change mods for now

Closes https://github.com/ppy/osu/issues/20204.

Will require reprocessing of everything server-side.
This commit is contained in:
Dean Herbert
2022-09-09 16:39:22 +09:00
parent fd6d67d0f6
commit ec21ab8171
3 changed files with 2 additions and 2 deletions

View File

@ -19,6 +19,8 @@ namespace osu.Game.Rulesets.Mods
/// </summary>
public const double FINAL_RATE_PROGRESS = 0.75f;
public override double ScoreMultiplier => 0.5;
[SettingSource("Initial rate", "The starting speed of the track")]
public abstract BindableNumber<double> InitialRate { get; }