Make it send a message instead of responding to 8ball

This commit is contained in:
Bea 2022-12-19 21:00:25 +01:00
parent 7959044335
commit 4d888d68b9
1 changed files with 1 additions and 1 deletions

View File

@ -48,6 +48,6 @@ public class MagicBallCommand implements MessageCommand
String question = questionBuilder.toString();
event.getMessage().replyEmbeds(MagicBall.generateEmbed(question, event.getAuthor())).queue();
event.getChannel().sendMessageEmbeds(MagicBall.generateEmbed(question, event.getAuthor())).queue();
}
}