1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 11:42:56 +08:00

Fix applying mods to the wrong beatmap

This commit is contained in:
smoogipoo 2019-08-01 13:37:40 +09:00
parent 116354b4c4
commit e2420af10c

View File

@ -142,7 +142,7 @@ namespace osu.Game.Beatmaps
processor?.PostProcess();
foreach (var mod in mods.OfType<IApplicableToBeatmap>())
mod.ApplyToBeatmap(Beatmap);
mod.ApplyToBeatmap(converted);
return converted;
}