From 30c80683638c76607e5eaf3d2dfb1be0c8534d82 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Sat, 24 Oct 2020 14:22:30 -0400 Subject: [PATCH] Add permissions to invite link --- src/bot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.ts b/src/bot.ts index 2345a25..61c0271 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -96,7 +96,7 @@ export default class { }); this.client.on('ready', async () => { - console.log(`Ready! Invite the bot with https://discordapp.com/oauth2/authorize?client_id=${this.clientId}&scope=bot`); + console.log(`Ready! Invite the bot with https://discordapp.com/oauth2/authorize?client_id=${this.clientId}&scope=bot&permissions=36760640`); }); this.client.on('error', console.error);