logs: reduce spam
This commit is contained in:
parent
e6f7143405
commit
9d9c8d2104
1 changed files with 2 additions and 3 deletions
|
@ -21,13 +21,12 @@ class Logs(Cog):
|
||||||
self.susp_words = ["sx", "tx", "reinx", # piracy-enabling cfws
|
self.susp_words = ["sx", "tx", "reinx", # piracy-enabling cfws
|
||||||
"tinfoil", "dz", # title managers
|
"tinfoil", "dz", # title managers
|
||||||
"goldleaf", "lithium", # title managers
|
"goldleaf", "lithium", # title managers
|
||||||
"nsp", "xci", # "backup" formats
|
"xci"] # "backup" format
|
||||||
"nut", "doge", "cdnsp"] # cdn dlers/dumpers
|
|
||||||
susp_hellgex = "|".join([r"\W*".join(list(word)) for
|
susp_hellgex = "|".join([r"\W*".join(list(word)) for
|
||||||
word in self.susp_words])
|
word in self.susp_words])
|
||||||
self.susp_hellgex = re.compile(susp_hellgex, re.IGNORECASE)
|
self.susp_hellgex = re.compile(susp_hellgex, re.IGNORECASE)
|
||||||
|
|
||||||
self.ok_words = ["nspwn", "hblnsp", "exefs"]
|
self.ok_words = []
|
||||||
|
|
||||||
@Cog.listener()
|
@Cog.listener()
|
||||||
async def on_member_join(self, member):
|
async def on_member_join(self, member):
|
||||||
|
|
Loading…
Reference in a new issue