1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Remove time ramp and rate adjust mod incompatibility

This commit is contained in:
smoogipoo 2019-12-11 19:48:57 +09:00
parent 404d3207ff
commit c34b6b59ed
2 changed files with 0 additions and 4 deletions

View File

@ -10,8 +10,6 @@ namespace osu.Game.Rulesets.Mods
{
public abstract class ModRateAdjust : Mod, IApplicableToTrack
{
public override Type[] IncompatibleMods => new[] { typeof(ModTimeRamp) };
public abstract BindableNumber<double> SpeedChange { get; }
public virtual void ApplyToTrack(Track track)

View File

@ -20,8 +20,6 @@ namespace osu.Game.Rulesets.Mods
/// </summary>
private const double final_rate_progress = 0.75f;
public override Type[] IncompatibleMods => new[] { typeof(ModRateAdjust) };
[SettingSource("Final rate", "The final speed to ramp to")]
public abstract BindableNumber<double> FinalRate { get; }