Ajout ligne à la fin du fichier
This commit is contained in:
parent
704b6eea36
commit
e8e85259ea
6 changed files with 8 additions and 6 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
|||
setup.py
|
||||
Dockerfile
|
||||
UPDATE/
|
||||
UPDATE/
|
||||
|
|
|
@ -35,4 +35,4 @@ token = "ton token"
|
|||
| [.info](https://code.up8.edu/Anri/bot-licence/-/blob/master/cogs/commands.py#L128) | Pour obtenir des infos sur le bot |
|
||||
| [.whois](https://code.up8.edu/Anri/bot-licence/-/blob/master/cogs/commands.py#L160) | Pour obtenir des infos sur un membre |
|
||||
| [.appel](https://code.up8.edu/Anri/bot-licence/-/blob/master/cogs/commands.py#L220) | Pour faire l'appel facilement |
|
||||
| [.sondage](https://code.up8.edu/Anri/bot-licence/-/blob/master/cogs/commands.py#L253) | Pour faire un sondage facilement |
|
||||
| [.sondage](https://code.up8.edu/Anri/bot-licence/-/blob/master/cogs/commands.py#L253) | Pour faire un sondage facilement |
|
||||
|
|
|
@ -302,4 +302,5 @@ class Commands(commands.Cog):
|
|||
if user.nick:
|
||||
return f"{user.nick} ({user.name}#{user.discriminator})"
|
||||
else:
|
||||
return f"{user.name}#{user.discriminator}"
|
||||
return f"{user.name}#{user.discriminator}"
|
||||
|
|
@ -70,4 +70,5 @@ class Help(commands.Cog):
|
|||
halp = discord.Embed(title = 'Erreur !', description = f"Qu'est ce que {cog[0]} ?", color = 0xC41B1B)
|
||||
else:
|
||||
await ctx.message.add_reaction(emoji = '✅')
|
||||
await ctx.send('', embed = halp)
|
||||
await ctx.send('', embed = halp)
|
||||
|
2
main.py
2
main.py
|
@ -82,4 +82,4 @@ async def on_raw_reaction_remove(payload):
|
|||
await member.remove_roles(role)
|
||||
|
||||
# pour lancer le bot
|
||||
client.run(token)
|
||||
client.run(token)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
discord.py==1.5.1
|
||||
async-timeout==3.0.1
|
||||
pytz==2020.1
|
||||
pytz==2020.1
|
||||
|
|
Reference in a new issue