We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f925b9 commit edd10a3Copy full SHA for edd10a3
1 file changed
src/main/java/technobot/commands/music/StopCommand.java
@@ -25,7 +25,7 @@ public StopCommand(TechnoBot bot) {
25
@Override
26
public void execute(SlashCommandInteractionEvent event) {
27
MusicHandler musicHandler = GuildData.get(event.getGuild()).musicHandler;
28
- if (musicHandler == null || musicHandler.getQueue().isEmpty()) {
+ if (musicHandler == null) {
29
String text = "The music player is already stopped!";
30
event.replyEmbeds(EmbedUtils.createError(text)).setEphemeral(true).queue();
31
} else {
0 commit comments