From 83fa78e9fad8a217b7eaef28903d388e53854cf2 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Mon, 27 Dec 2021 22:58:22 -0600 Subject: [PATCH] Fix invite scope --- src/bot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.ts b/src/bot.ts index b9c31a7..d59fb9f 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -112,7 +112,7 @@ export default class { this.client.once('ready', () => { debug(generateDependencyReport()); - spinner.succeed(`Ready! Invite the bot with https://discordapp.com/oauth2/authorize?client_id=${this.client.user?.id ?? ''}&scope=bot&permissions=2184236096`); + spinner.succeed(`Ready! Invite the bot with https://discordapp.com/oauth2/authorize?client_id=${this.client.user?.id ?? ''}&scope=bot%20applications.commands&permissions=2184236096`); }); this.client.on('error', console.error);