From 18239c5d7990cf6f60ee3a93bb675ad7ca0bedfb Mon Sep 17 00:00:00 2001 From: Frerduro <35627247+Frerduro@users.noreply.github.com> Date: Mon, 8 Feb 2021 15:08:26 -0800 Subject: [PATCH 1/2] Fix invite command You had two ping commands registered. --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 9488d42..f8a1c23 100644 --- a/bot.py +++ b/bot.py @@ -69,7 +69,7 @@ async def ping(ctx): await ctx.send(f'Birdflop bot ping is {round(bot.latency * 1000)}ms') @bot.command() -async def ping(ctx): +async def invite(ctx): await ctx.send('Invite me with this link:/nhttps://discord.com/oauth2/authorize?client_id=787929894616825867&permissions=0&scope=bot') @bot.command(name="react", pass_context=True) From 40c8e8ff7e5921c2f39c9c28632fca729b278838 Mon Sep 17 00:00:00 2001 From: Purpur <43528123+Pemigrade@users.noreply.github.com> Date: Mon, 8 Feb 2021 17:31:35 -0600 Subject: [PATCH 2/2] Fix md --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index f8a1c23..95a0f5d 100644 --- a/bot.py +++ b/bot.py @@ -70,7 +70,7 @@ async def ping(ctx): @bot.command() async def invite(ctx): - await ctx.send('Invite me with this link:/nhttps://discord.com/oauth2/authorize?client_id=787929894616825867&permissions=0&scope=bot') + await ctx.send('Invite me with this link:\nhttps://discord.com/oauth2/authorize?client_id=787929894616825867&permissions=0&scope=bot') @bot.command(name="react", pass_context=True) @has_permissions(administrator=True)