update member count command

This commit is contained in:
Lee
2024-06-29 18:35:53 +01:00
parent 4821e2a4fa
commit df44ae90b9
4 changed files with 56 additions and 5 deletions

View File

@ -47,8 +47,8 @@ public class PauseSubCommand extends BatSubCommand {
boolean didPause = spotifyService.pausePlayback(user);
interaction.replyEmbeds(EmbedUtils.successEmbed()
.setDescription(didPause ? ":pause_button: Paused the current track.".formatted(Emojis.CHECK_MARK_EMOJI) :
"%s The current track is already paused.".formatted(Emojis.CROSS_MARK_EMOJI))
.setDescription(didPause ? ":pause_button: Paused the current track."
: "%s The current track is already paused.".formatted(Emojis.CROSS_MARK_EMOJI))
.build())
.queue();
}