1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 22:03:21 +08:00

Fix ready button tooltip showing when locally available

This commit is contained in:
Dan Balasescu 2021-11-16 14:48:52 +09:00
parent 01f3649d75
commit 5c3141d16a

View File

@ -36,7 +36,10 @@ namespace osu.Game.Screens.OnlinePlay.Components
if (Enabled.Value)
return string.Empty;
return "Beatmap not downloaded";
if (availability.Value.State != DownloadState.LocallyAvailable)
return "Beatmap not downloaded";
return string.Empty;
}
}
}