Make it send a message instead of responding to 8ball
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bea 2022-12-19 21:00:25 +01:00
parent 90e0c4ddf9
commit ecfa3cded8

View File

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