1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 10:02:37 +08:00

Fix ruleset not getting updated if changed

This commit is contained in:
smoogipoo
2018-06-29 20:50:39 +09:00
Unverified
parent 9187eb8626
commit 6d6436c8d3
+2 -1
View File
@@ -288,10 +288,11 @@ namespace osu.Game.Screens.Select
bool preview = beatmap?.BeatmapSetInfoID != Beatmap.Value?.BeatmapInfo.BeatmapSetInfoID;
Beatmap.Value = beatmaps.GetWorkingBeatmap(beatmap, Beatmap.Value);
Ruleset.Value = ruleset;
ensurePlayingSelected(preview);
}
Ruleset.Value = ruleset;
UpdateBeatmap(Beatmap.Value);
}