diff --git a/djs-bot/commands/misc/guildleave.js b/djs-bot/commands/misc/guildleave.js index 3c98618f8..2adeaa6e5 100644 --- a/djs-bot/commands/misc/guildleave.js +++ b/djs-bot/commands/misc/guildleave.js @@ -32,7 +32,7 @@ module.exports = { if (!guild) { return interaction.reply({ content: `\`${id}\` is not a valid guild ID`, ephemeral: true }); } - try { + await guild.leave(); return interaction.reply({ content: `Left guild \`${id}\``, ephemeral: true }); } catch (error) {