Modifications mineurs sur le .appel

This commit is contained in:
Mylloon 2020-11-17 15:08:46 +01:00
parent e5ecf75176
commit ea7e5ed3d3

View file

@ -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):