diff --git a/redbot/cogs/filter/filter.py b/redbot/cogs/filter/filter.py index b50e5f336..63f8032de 100644 --- a/redbot/cogs/filter/filter.py +++ b/redbot/cogs/filter/filter.py @@ -272,7 +272,7 @@ class Filter(commands.Cog): elif isinstance(server_or_channel, discord.TextChannel): async with self.config.channel(server_or_channel).filter() as cur_list: for w in words: - if w.lower not in cur_list and w: + if w.lower() not in cur_list and w: cur_list.append(w.lower()) added = True