diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index 36732c2..b38f62d 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -297,9 +297,8 @@ class Mybot(commands.Cog): guild = self.bot.guilds[0] members = guild.members for member in members: - print(member.name) if member.name == word[1:]: - sentence = sentence.replace(word, member.id) + sentence = sentence.replace(word, member.mention) channel = [x for x in self.bot.get_all_channels() if x.name == "général"][0] await channel.send(sentence)