1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 00:20:21 +08:00

Fix hidden mod crash

This commit is contained in:
smoogipoo
2020-11-13 21:43:53 +09:00
Unverified
parent feabca860b
commit 1e05fd48e2
@@ -28,10 +28,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public override void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)
{
foreach (var d in drawables)
{
d.HitObjectApplied += applyFadeInAdjustment;
applyFadeInAdjustment(d);
}
base.ApplyToDrawableHitObjects(drawables);
}