From fd89e36490da711ba611c1f7c8dda93a3de054f0 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 29 Mar 2022 20:41:38 -0400 Subject: New command; Every Discord interation is async --- commands/stop.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands/stop.js') diff --git a/commands/stop.js b/commands/stop.js index f1bd8eb..c753a1b 100644 --- a/commands/stop.js +++ b/commands/stop.js @@ -29,7 +29,7 @@ export default { .setDescription('Powers off the bot'), async execute(interaction, bot) { if (![config.botOwner].includes(interaction.user.id)) return await interaction.reply({ content: "You do not have permissions to execute this command.", ephemeral: true }); - await interaction.reply('Powering off...') - await stopBot(bot, interaction); + await interaction.reply({ content: 'Powering off...', ephemeral: true}) + return await stopBot(bot, interaction); }, }; \ No newline at end of file -- cgit v1.2.3