From e84bde3fcad6d9670a30e8b714e20075306bc856 Mon Sep 17 00:00:00 2001 From: BFlow Date: Sat, 25 Apr 2020 20:26:44 +0200 Subject: [PATCH] =?UTF-8?q?test=20n=C2=B06=20command=20say?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kabot/kabot/kabot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index c6cf60b..36732c2 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -297,7 +297,8 @@ class Mybot(commands.Cog): guild = self.bot.guilds[0] members = guild.members for member in members: - if member.name == word: + print(member.name) + if member.name == word[1:]: sentence = sentence.replace(word, member.id) channel = [x for x in self.bot.get_all_channels() if x.name == "général"][0] await channel.send(sentence)