diff options
| author | Max Isom <[email protected]> | 2021-12-27 22:58:22 -0600 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2021-12-27 22:58:22 -0600 |
| commit | 83fa78e9fad8a217b7eaef28903d388e53854cf2 (patch) | |
| tree | f228fadc7241a20e5e670c68c8a81191666299bc /src/bot.ts | |
| parent | c20e3b1760c0ec7d2422072930e0a13236032928 (diff) | |
| download | muse-83fa78e9fad8a217b7eaef28903d388e53854cf2.tar.xz muse-83fa78e9fad8a217b7eaef28903d388e53854cf2.zip | |
Fix invite scope
Diffstat (limited to 'src/bot.ts')
| -rw-r--r-- | src/bot.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
