Modifications mineurs sur le .appel
This commit is contained in:
parent
e5ecf75176
commit
ea7e5ed3d3
1 changed files with 3 additions and 3 deletions
|
@ -221,9 +221,9 @@ class Commands(commands.Cog):
|
|||
voice_channels.extend(ctx.guild.voice_channels)
|
||||
if voice_channel:
|
||||
voice_channels = [self.bot.get_channel(voice_channel)]
|
||||
await ctx.message.add_reaction(emoji = '✅')
|
||||
await ctx.message.add_reaction(emoji = "✅")
|
||||
if len(voice_channels) > 0:
|
||||
embed = discord.Embed(title = "Réagissez à ce message avec ✋ pour signaler votre présence." ,description = f"(attention, je réagis aussi) — Professeur : {ctx.author.mention}")
|
||||
embed = discord.Embed(title = "Réagissez à ce message avec ✋ pour signaler votre présence.", description = f"(attention, je réagis aussi) — Professeur : {ctx.author.mention}")
|
||||
for channel in voice_channels:
|
||||
prof = []
|
||||
for role in ["Professeur", "professeur", "Prof", "prof"]:
|
||||
|
@ -240,7 +240,7 @@ class Commands(commands.Cog):
|
|||
message = await ctx.send(embed = embed)
|
||||
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 = '✋')
|
||||
await message.add_reaction(emoji = "✋")
|
||||
@appel.error
|
||||
async def appel_error(self, ctx, error):
|
||||
if isinstance(error, commands.CheckFailure):
|
||||
|
|
Reference in a new issue