From e6f7143405a63f2e17d47f6440f496036e2d228e Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Sun, 3 Mar 2019 22:41:06 +0300 Subject: [PATCH] logs: ignore cases on hellgex --- cogs/logs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/logs.py b/cogs/logs.py index d121c79..82cbf53 100644 --- a/cogs/logs.py +++ b/cogs/logs.py @@ -25,7 +25,7 @@ class Logs(Cog): "nut", "doge", "cdnsp"] # cdn dlers/dumpers susp_hellgex = "|".join([r"\W*".join(list(word)) for word in self.susp_words]) - self.susp_hellgex = re.compile(susp_hellgex) + self.susp_hellgex = re.compile(susp_hellgex, re.IGNORECASE) self.ok_words = ["nspwn", "hblnsp", "exefs"]