From 9d17c3acdeb665c6505a3e8f559235ec9e305419 Mon Sep 17 00:00:00 2001 From: LightSage Date: Mon, 16 May 2022 14:34:48 -0500 Subject: [PATCH] Fix scope typo in FAQ --- docs/faq.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 9829e0e14..7a37768e0 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -490,8 +490,8 @@ My bot's commands are not showing up! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1. Did you :meth:`~.CommandTree.sync` your command? Commands need to be synced before they will appear. -2. Did you invite your bot with the correct permissions? Bots need to be invited with the ``application.commands`` +2. Did you invite your bot with the correct permissions? Bots need to be invited with the ``applications.commands`` scope in addition to the ``bot`` scope. For example, invite the bot with the following URL: ``https://discord.com/oauth2/authorize?client_id=&scope=applications.commands+bot``. Alternatively, if you use :func:`utils.oauth_url`, you can call the function as such: - ``oauth_url(, scopes=("bot", "application.commands"))``. + ``oauth_url(, scopes=("bot", "applications.commands"))``.