1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 01:49:53 +08:00

Fix selection changing on entering song select

Conditional was backwards, easy fix.
This commit is contained in:
Dean Herbert
2017-07-21 06:15:44 +09:00
Unverified
parent 31ac083408
commit b4dddc98ee
+1 -1
View File
@@ -190,7 +190,7 @@ namespace osu.Game.Screens.Select
private void carouselBeatmapsLoaded()
{
if (Beatmap.Value != null && Beatmap.Value.BeatmapSetInfo?.DeletePending != false)
if (Beatmap.Value.BeatmapSetInfo?.DeletePending == false)
carousel.SelectBeatmap(Beatmap.Value.BeatmapInfo, false);
else
carousel.SelectNext();