Skip to content

Commit

Permalink
add request link to text commands
Browse files Browse the repository at this point in the history
  • Loading branch information
FO-nTTaX committed Aug 15, 2022
1 parent 816ce41 commit 4038aca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ftsbot/cogs/textcommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@ async def justask(self, ctx):
await ctx.send(embed=discord.Embed(colour=discord.Colour(0x00ffff), description='If you need help with something or just have a question, please post the question in the channel for the relevant wiki.' +
' Asking if someone can help only costs you extra time, and you usually don\'t even need an admin!'))

@slash_commands.command(description='Send a link to the request form')
async def request(self, ctx):
await ctx.send(embed=discord.Embed(colour=discord.Colour(0x00ffff), description='https://forms.gle/1zcZHkKe6udPNv2v6'))

@slash_commands.cooldown(1, 300, commands.BucketType.user)
@slash_commands.command(description='Lickypiddy!')
async def lickypiddy(self, ctx):
Expand Down Expand Up @@ -115,6 +111,10 @@ async def notability(self, ctx, wiki=None):
async def ranking(self, ctx):
await ctx.send(embed=discord.Embed(colour=discord.Colour(0x00ffff), description='**Liquipedia ranking**: https://liquipedia.net/statistics/?view=editcount&wikilist=all'))

@slash_commands.command(description='Send a link to the request form')
async def request(self, ctx):
await ctx.send(embed=discord.Embed(colour=discord.Colour(0x00ffff), description='[Liquipedia Request Form](https://forms.gle/1zcZHkKe6udPNv2v6)'))

@slash_commands.cooldown(1, 300, commands.BucketType.user)
@slash_commands.command(description='Think very hard')
async def thinking(self, ctx):
Expand Down

0 comments on commit 4038aca

Please sign in to comment.