Déplacement fonction setup vers le haut du fichier
This commit is contained in:
parent
da6eca03ee
commit
eee49784bb
1 changed files with 4 additions and 5 deletions
|
@ -3,6 +3,9 @@ from discord.ext import commands
|
|||
from random import randint, choice
|
||||
import time
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Commands(bot))
|
||||
|
||||
class Commands(commands.Cog):
|
||||
"""Commandes générales du bot."""
|
||||
|
||||
|
@ -144,8 +147,4 @@ class Commands(commands.Cog):
|
|||
embed.add_field(name='Channels', value=f'{text} textuelles\n{voice} vocales')
|
||||
# ca peut être utile de connaitre quel version le bot utilise sans devoir se connecter a distance au serveur qui fait tourner le bot
|
||||
embed.set_footer(text=f'Basé sur discord.py {discord.__version__}')
|
||||
await ctx.send(embed=embed)
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Commands(bot))
|
||||
await ctx.send(embed=embed)
|
Reference in a new issue