diff --git a/osu.Game/Screens/OnlinePlay/Components/ReadyButton.cs b/osu.Game/Screens/OnlinePlay/Components/ReadyButton.cs index 5a4a0a0fba..9822ceaaf6 100644 --- a/osu.Game/Screens/OnlinePlay/Components/ReadyButton.cs +++ b/osu.Game/Screens/OnlinePlay/Components/ReadyButton.cs @@ -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; } } }