diff --git a/src/main/java/cc/fascinated/bat/features/spotify/command/PauseSubCommand.java b/src/main/java/cc/fascinated/bat/features/spotify/command/PauseSubCommand.java index 77ef74b..f6fb55a 100644 --- a/src/main/java/cc/fascinated/bat/features/spotify/command/PauseSubCommand.java +++ b/src/main/java/cc/fascinated/bat/features/spotify/command/PauseSubCommand.java @@ -36,13 +36,13 @@ public class PauseSubCommand extends BatSubCommand { return; } - if (!spotifyService.hasTrackPlaying(user)) { - interaction.replyEmbeds(EmbedUtils.genericEmbed() - .setDescription("You need to be playing a track to pause it.") - .build()) - .queue(); - return; - } +// if (!spotifyService.hasTrackPlaying(user)) { +// interaction.replyEmbeds(EmbedUtils.genericEmbed() +// .setDescription("You need to be playing a track to pause it.") +// .build()) +// .queue(); +// return; +// } boolean didPause = spotifyService.pausePlayback(user); interaction.replyEmbeds(EmbedUtils.genericEmbed()