diff --git a/ftsbot/cogs/antispam.py b/ftsbot/cogs/antispam.py index 9a0f5aa..4443ff7 100644 --- a/ftsbot/cogs/antispam.py +++ b/ftsbot/cogs/antispam.py @@ -190,13 +190,14 @@ async def on_message( bad_words = [ 'liquidpedia', 'liquidredia', + 'liquidpeia', ] if any(bad_word in unidecode(message.content).lower() for bad_word in bad_words): await message.channel.send( embed=discord.Embed( colour=discord.Colour(0xff0000), description=( - 'It is **Liquipedia**, only one d in the name! Naughty-counter of ' + 'It is **Liquipedia**, please educate youurself on the spelling! Naughty-counter of ' + message.author.name + ' has been incremented.' ) )