fix mention in avis at the beginning and at the end

This commit is contained in:
Mylloon 2021-05-08 10:28:58 +02:00
parent 189bf74a71
commit ab1b0d11c9

View file

@ -365,10 +365,18 @@ class Utils(commands.Cog):
for findedId in re.findall(r'\d+', titre): for findedId in re.findall(r'\d+', titre):
titre = self._cleanUser(ctx, titre, findedId) titre = self._cleanUser(ctx, titre, findedId)
args = args[1:] args = args[1:]
demande = args[0] demande = f"`{args[0]}`"
for findedMention in re.findall(r'<@[!]?\d*>', demande): findedMention = []
demande = demande.replace(findedMention, f"`{findedMention}`") for findingMention in re.findall(r'<@[!]?\d*>', demande):
embed = discord.Embed(title = titre, description = f"`{demande}`", color = discord.Colour.random()).set_footer(text = self._userOrNick(ctx.author), icon_url = ctx.author.avatar_url) findedMention.append(findingMention)
findedMention = list(dict.fromkeys(findedMention))
for i in range(0, len(findedMention)):
demande = demande.replace(findedMention[i], f"`{findedMention[i]}`")
if demande.startswith("``<@"):
demande = demande[2:]
if demande.endswith(">``"):
demande = demande[:-2]
embed = discord.Embed(title = titre, description = demande, color = discord.Colour.random()).set_footer(text = self._userOrNick(ctx.author), icon_url = ctx.author.avatar_url)
message = await ctx.send(embed = embed) message = await ctx.send(embed = embed)
reactions = ['', '🤷', ''] reactions = ['', '🤷', '']
for i in reactions: for i in reactions: