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

Add a brief inline comment to make sure we don't undo the fix

This commit is contained in:
Dean Herbert 2024-04-25 21:31:36 +08:00
parent c1107d2797
commit 387fcb8781
No known key found for this signature in database

View File

@ -425,6 +425,7 @@ namespace osu.Game.Screens.Select
if (!AllowEditing)
throw new InvalidOperationException($"Attempted to edit when {nameof(AllowEditing)} is disabled");
// Forced refetch is important here to guarantee correct invalidation across all difficulties.
Beatmap.Value = beatmaps.GetWorkingBeatmap(beatmapInfo ?? beatmapInfoNoDebounce, true);
this.Push(new EditorLoader());
}