don't delay the downloadmenu message when no songs are available

This commit is contained in:
yugecin
2018-07-07 23:25:22 +02:00
parent 9af6abacb0
commit 34dc75469c
2 changed files with 1 additions and 14 deletions

View File

@@ -895,7 +895,7 @@ public class MainMenu extends BaseOpsuState {
private void enterSongMenu() {
OpsuState state = songMenuState;
if (BeatmapSetList.get().getMapSetCount() == 0) {
downloadState.notifyOnLoad("Download some beatmaps to get started!");
barNotifs.send("Download some beatmaps to get started!");
state = downloadState;
}
displayContainer.switchState(state);