1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 14:01:24 +08:00

Fix invalid method reference in comment

`BeatmapModelManager.Save()` was moved to `BeatmapManager`, not to
`BeatmapImporter`.
This commit is contained in:
Bartłomiej Dach
2022-06-16 12:01:53 +02:00
Unverified
parent 8a5755ca52
commit a635664a86
+1 -1
View File
@@ -174,7 +174,7 @@ namespace osu.Game.Beatmaps
private WorkingBeatmap addDifficultyToSet(BeatmapSetInfo targetBeatmapSet, IBeatmap newBeatmap, ISkin beatmapSkin)
{
// populate circular beatmap set info <-> beatmap info references manually.
// several places like `BeatmapImporter.Save()` or `GetWorkingBeatmap()`
// several places like `Save()` or `GetWorkingBeatmap()`
// rely on them being freely traversable in both directions for correct operation.
targetBeatmapSet.Beatmaps.Add(newBeatmap.BeatmapInfo);
newBeatmap.BeatmapInfo.BeatmapSet = targetBeatmapSet;