aboutsummaryrefslogtreecommitdiff
path: root/src/bot.ts
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2021-12-27 22:58:22 -0600
committerMax Isom <[email protected]>2021-12-27 22:58:22 -0600
commit83fa78e9fad8a217b7eaef28903d388e53854cf2 (patch)
treef228fadc7241a20e5e670c68c8a81191666299bc /src/bot.ts
parentc20e3b1760c0ec7d2422072930e0a13236032928 (diff)
downloadmuse-83fa78e9fad8a217b7eaef28903d388e53854cf2.tar.xz
muse-83fa78e9fad8a217b7eaef28903d388e53854cf2.zip
Fix invite scope
Diffstat (limited to 'src/bot.ts')
-rw-r--r--src/bot.ts2
1 files changed, 1 insertions, 1 deletions
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);