From d316cb0bc895ce1f3d52070465065c1a2008fb27 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 29 Jul 2021 23:35:17 +0200 Subject: [PATCH] adding @ when mentioning the user --- src/modules/commandes.py | 24 ++++++++++++------------ src/modules/utils.py | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/modules/commandes.py b/src/modules/commandes.py index f71e771..6a2f20a 100644 --- a/src/modules/commandes.py +++ b/src/modules/commandes.py @@ -21,11 +21,11 @@ class Commandes(commands.Cog): if ctx.author.is_mod: if CommandesDB().existeCommande(commandName)[0] == False: CommandesDB().ajoutCommande(commandName, commandMessage) - await ctx.send(f"{ctx.author.name}, commande {commandName} ajoutée !") + await ctx.send(f"@{ctx.author.name}, commande {commandName} ajoutée !") else: - await ctx.send(f"{ctx.author.name}, {self.alreadyExistingCommand}.") + await ctx.send(f"@{ctx.author.name}, {self.alreadyExistingCommand}.") else: - await ctx.send(f"{ctx.author.name}, {self.notModo}.") + await ctx.send(f"@{ctx.author.name}, {self.notModo}.") @commands.command(name="remove") async def _remove(self, ctx: commands.Context, commandName = None): @@ -35,11 +35,11 @@ class Commandes(commands.Cog): if ctx.author.is_mod: if CommandesDB().existeCommande(commandName)[0]: CommandesDB().suppressionCommande(commandName) - await ctx.send(f"{ctx.author.name}, commande {commandName} supprimée !") + await ctx.send(f"@{ctx.author.name}, commande {commandName} supprimée !") else: - await ctx.send(f"{ctx.author.name}, {self.notExistingCommand}.") + await ctx.send(f"@{ctx.author.name}, {self.notExistingCommand}.") else: - await ctx.send(f"{ctx.author.name}, {self.notModo}.") + await ctx.send(f"@{ctx.author.name}, {self.notModo}.") @commands.command(name="list") async def _list(self, ctx: commands.Context): @@ -52,12 +52,12 @@ class Commandes(commands.Cog): commandes.append((command.name,)) if len(commandes) > 0: - message = f"{ctx.author.name}, liste des commandes -> " + message = f"@{ctx.author.name}, liste des commandes -> " for commande in commandes: message += f"{self.keys['PREFIX']}{commande[0]}, " await ctx.send(message[:-2]) else: - await ctx.send(f"{ctx.author.name}, aucune commande enrengistrée dans la base de donnée.") + await ctx.send(f"@{ctx.author.name}, aucune commande enrengistrée dans la base de donnée.") @commands.command(name="edit") async def _edit(self, ctx: commands.Context, commandName = None, commandMessage = None): @@ -68,15 +68,15 @@ class Commandes(commands.Cog): if CommandesDB().existeCommande(commandName)[0]: CommandesDB().suppressionCommande(commandName) CommandesDB().ajoutCommande(commandName, commandMessage) - await ctx.send(f"{ctx.author.name}, commande {commandName} modifiée !") + await ctx.send(f"@{ctx.author.name}, commande {commandName} modifiée !") else: - await ctx.send(f"{ctx.author.name}, {self.notExistingCommand}.") + await ctx.send(f"@{ctx.author.name}, {self.notExistingCommand}.") else: - await ctx.send(f"{ctx.author.name}, {self.notModo}.") + await ctx.send(f"@{ctx.author.name}, {self.notModo}.") @commands.Cog.event() async def event_message(self, message): if message.content.startswith(self.keys["PREFIX"]): command = CommandesDB().existeCommande(message.content[1:].split(" ")[0]) # récupère le nom de la commande if command[0]: # vérification si existe - await message.channel.send(f"{message.author.name}, {command[1]}") # envois le contenu de la commande + await message.channel.send(f"@{message.author.name}, {command[1]}") # envois le contenu de la commande diff --git a/src/modules/utils.py b/src/modules/utils.py index eb17ab0..183043d 100644 --- a/src/modules/utils.py +++ b/src/modules/utils.py @@ -12,4 +12,4 @@ class Utils(commands.Cog): @commands.command() async def discord(self, ctx: commands.Context): """Envoie le lien de ton serveur Discord""" - await ctx.send(f"Rejoins mon Discord {self.keys['DISCORD']} !") + await ctx.send(f"@{ctx.author.name}, Rejoins mon Discord {self.keys['DISCORD']} !")