Simplify DT/HT/NC/DC

This commit is contained in:
Dean Herbert
2019-03-12 18:14:41 +09:00
parent c1a356161f
commit 6832e384a9
5 changed files with 36 additions and 16 deletions

View File

@ -17,7 +17,7 @@ namespace osu.Game.Rulesets.Mods
public override void ApplyToClock(IAdjustableClock clock)
{
if (clock is IHasPitchAdjust pitchAdjust)
pitchAdjust.PitchAdjust = 1.5;
pitchAdjust.PitchAdjust *= RateAdjust;
else
base.ApplyToClock(clock);
}