fixing the invite link

This commit is contained in:
Luke Robles 2022-10-13 09:54:13 -07:00
parent c2a4054e06
commit 89751cfa09

View File

@ -245,7 +245,7 @@ def get_help_message(method):
def get_help_embed(bot): def get_help_embed(bot):
categories = { categories = {
"game APIs": ["bf5", "ffxiv"], "game APIs": ["ffxiv"],
"Fun things": [ "Fun things": [
"clap", "clap",
"excuse", "excuse",
@ -349,7 +349,7 @@ def get_help_embed(bot):
"**Use `!help <Command>` for more information about a command.** \n\n" "**Use `!help <Command>` for more information about a command.** \n\n"
+ "**Examples:** \n `!help dog` for detailed help for the dog command \n\n" + "**Examples:** \n `!help dog` for detailed help for the dog command \n\n"
# + "**Useful links:** [My source code](https://git.luker.gq/ldooks/dragon-bot), [Donate](https://cash.me/$ldooks) \n\n" # + "**Useful links:** [My source code](https://git.luker.gq/ldooks/dragon-bot), [Donate](https://cash.me/$ldooks) \n\n"
+ "**Invite me to another server:** [Click here](https://discord.com/api/oauth2/authorize?client_id=%s&permissions=8&response_type=code&scope=bot%20applications.commands)" + "**Invite me to another server:** [Click here](https://discord.com/api/oauth2/authorize?client_id=%s&permissions=8&response_type=code&scope=bot%%20applications.commands)"
% bot.user.id % bot.user.id
) )