1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Don't think we need this expire call

This commit is contained in:
Dean Herbert 2017-12-29 18:57:38 +09:00
parent a4f941cdf1
commit db8228f69d

View File

@ -77,10 +77,7 @@ namespace osu.Game.Rulesets.Osu.Mods
// delay a bit less to let the sliderball fade out peacefully instead of having a hard cut // delay a bit less to let the sliderball fade out peacefully instead of having a hard cut
using (slider.BeginDelayedSequence(longFadeDuration - fadeOutDuration, true)) using (slider.BeginDelayedSequence(longFadeDuration - fadeOutDuration, true))
{
slider.Ball.FadeOut(fadeOutDuration); slider.Ball.FadeOut(fadeOutDuration);
slider.Delay(fadeOutDuration).Expire();
}
} }
break; break;