diff --git a/src/main/java/cc/fascinated/bat/features/spotify/command/CurrentSubCommand.java b/src/main/java/cc/fascinated/bat/features/spotify/command/CurrentSubCommand.java index d54bead..7420b0e 100644 --- a/src/main/java/cc/fascinated/bat/features/spotify/command/CurrentSubCommand.java +++ b/src/main/java/cc/fascinated/bat/features/spotify/command/CurrentSubCommand.java @@ -42,13 +42,13 @@ public class CurrentSubCommand extends BatSubCommand { return; } - if (!spotifyService.hasTrackPlaying(user)) { - interaction.replyEmbeds(EmbedUtils.genericEmbed() - .setDescription("You are not currently playing a track.") - .build()) - .queue(); - return; - } +// if (!spotifyService.hasTrackPlaying(user)) { +// interaction.replyEmbeds(EmbedUtils.genericEmbed() +// .setDescription("You are not currently playing a track.") +// .build()) +// .queue(); +// return; +// } CurrentlyPlaying currentlyPlaying = spotifyService.getCurrentlyPlayingTrack(user); Track track = (Track) currentlyPlaying.getItem(); AlbumSimplified album = track.getAlbum();