Skip to content

Commit

Permalink
Add adminrequestrequirements text slash command (FO-nTTaX#45)
Browse files Browse the repository at this point in the history
* add `adminrequestrequirements` slash command
  • Loading branch information
hjpalpha authored Aug 23, 2023
1 parent 41f5546 commit 825cbba
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions ftsbot/cogs/textcommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,37 @@ async def justask(
)
)

@app_commands.command(
description='Tell people the minimum requirements for admin requests!'
)
async def adminrequestrequirements(
self,
interaction: discord.Interaction
):
await interaction.response.send_message(
embed=discord.Embed(
colour=discord.Colour(0x00ffff),
title=('What are the minimum requirements for any admin requests?'),
description=(
'__What are the minimum requirements for any admin requests?__\n'
+ '- provide an explanation what should be done\n'
+ '- be as precise as possible and include links where possible\n'
+ ' - for bans, it helps to link to contributions pages or edits that are ban worthy\n'
+ ' - for changes on locked pages, link to the page that is to be changed\n'
+ ' - for bot runs if you know the exact command it is appreciated, if you do not '
+ 'know it write down exactly what is to be done and on which wiki\n'
+ '- explain why it should be done\n'
+ ' - for changes on locked pages (e.g. css sheets), this includes specific examples '
+ 'that get fixed/improved due to the change and if possible also a reasoning why it '
+ 'doesn\'t break other stuff\n'
+ ' - for bans, it includes the reasons why you think a ban is needed as well as an '
+ 'example (a change they did that you think is ban-worthy)\n'
+ '- be polite and patient instead of demanding, remember that admins help on liquipedia '
+ 'voluntarily in their free time'
)
)
)

@app_commands.command(
description='Lickypiddy!'
)
Expand Down

0 comments on commit 825cbba

Please sign in to comment.