From 6af78c7da1241f004be36eb6eb382757997c2166 Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 28 Jun 2024 04:00:19 +0100 Subject: [PATCH] pls --- .../spotify/command/CurrentSubCommand.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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();