1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 19:22:54 +08:00

Fix editor no longer creating autoplay frames

This commit is contained in:
Dean Herbert 2021-06-01 17:28:41 +09:00
parent 7a71cc1e82
commit f14c0eae99

View File

@ -349,6 +349,9 @@ namespace osu.Game.Rulesets.UI
foreach (var mod in mods.OfType<IApplicableToDrawableRuleset<TObject>>())
mod.ApplyToDrawableRuleset(this);
foreach (var mod in mods.OfType<ICreateReplay>())
SetReplayScore(mod.CreateReplayScore(Beatmap, mods));
foreach (var mod in mods.OfType<IReadFromConfig>())
mod.ReadFromConfig(config);
}