aboutsummaryrefslogtreecommitdiff
path: root/commands/leaveguild.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-03-25 21:25:43 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-03-25 21:27:41 -0400
commit1a7a627446edfeb270850f0ed15c9c8d604380b2 (patch)
tree8435e5323ce8a81976cafe297a6c730b4f0695da /commands/leaveguild.js
parent85a8f11507c0fb74b67914090bdfe10c361b775e (diff)
downloadAleeBot-1a7a627446edfeb270850f0ed15c9c8d604380b2.tar.gz
AleeBot-1a7a627446edfeb270850f0ed15c9c8d604380b2.tar.bz2
AleeBot-1a7a627446edfeb270850f0ed15c9c8d604380b2.zip
Now using sequelize; Minor tweaks; New activities
Diffstat (limited to 'commands/leaveguild.js')
-rw-r--r--commands/leaveguild.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/leaveguild.js b/commands/leaveguild.js
index f88f0bb..00a97fc 100644
--- a/commands/leaveguild.js
+++ b/commands/leaveguild.js
@@ -19,7 +19,7 @@
* *************************************/
module.exports.run = async (client, message) => {
if (!['242775871059001344', message.guild.ownerID].includes(message.author.id)) return message.reply('Nope! You need the person who created this bot or the owner of this guild to use this command.');
- await message.channel.send('Leaving server. If that\'s a mistake, you can re-invite me...');
+ await message.channel.send('Leaving server. If that\'s a mistake, you can re-invite me');
message.guild.leave();
};