Passage méthode en membre protégé 2

This commit is contained in:
Mylloon 2020-11-24 09:23:24 +01:00
parent 827d7b753f
commit 25ada4964f
2 changed files with 4 additions and 4 deletions

View file

@ -74,7 +74,7 @@ class Commands(commands.Cog):
embed.add_field(name = 'Réponse :', value = answer.replace('False', 'Faux').replace('True', 'Vrai'), inline = False)
await ctx.message.add_reaction(emoji = '')
await ctx.send(content = None, embed = embed)
@calc.error
@_calc.error
async def calc_error(self, ctx, error):
await ctx.send("Tu n'as pas spécifié de calcul.")
@ -242,7 +242,7 @@ class Commands(commands.Cog):
else:
message = await ctx.send("Aucun salon vocal dans ce serveur, réagissez à ce message avec ✋ pour signaler votre présence (attention, je réagis aussi).")
await message.add_reaction(emoji = "")
@appel.error
@_appel.error
async def appel_error(self, ctx, error):
if isinstance(error, commands.CheckFailure):
await ctx.send("Tu n'as pas la permission de faire cette commande, demande à un professeur.")

View file

@ -12,8 +12,8 @@ class Help(commands.Cog):
self.bot = bot
self.bot.remove_command("help")
@commands.command()
async def help(self, ctx, *cog):
@commands.command(name='help')
async def _help(self, ctx, *cog):
"""Affiche toutes les commandes du bot.\n ➡ Syntaxe: .help [catégorie]"""
if not cog:
"""Liste des Cog"""