logs: document susp words
This commit is contained in:
parent
374b1e8437
commit
841fe43104
1 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,7 @@ import re
|
||||||
import config
|
import config
|
||||||
from helpers.restrictions import get_user_restrictions
|
from helpers.restrictions import get_user_restrictions
|
||||||
|
|
||||||
|
|
||||||
class Logs(Cog):
|
class Logs(Cog):
|
||||||
"""
|
"""
|
||||||
Logs join and leave messages, bans and unbans, and member changes.
|
Logs join and leave messages, bans and unbans, and member changes.
|
||||||
|
@ -17,8 +18,11 @@ class Logs(Cog):
|
||||||
self.name_re = re.compile(r"[a-zA-Z0-9].*")
|
self.name_re = re.compile(r"[a-zA-Z0-9].*")
|
||||||
self.clean_re = re.compile(r'[\W_]+', re.UNICODE)
|
self.clean_re = re.compile(r'[\W_]+', re.UNICODE)
|
||||||
# All lower case, no spaces, nothing non-alphanumeric
|
# All lower case, no spaces, nothing non-alphanumeric
|
||||||
self.susp_words = ["sx", "tx", "reinx", "tinfoil", "dz", "goldleaf",
|
self.susp_words = ["sx", "tx", "reinx", # piracy-enabling cfws
|
||||||
"nsp", "xci", "nut", "doge", "cdnsp", "lithium"]
|
"tinfoil", "dz", # title managers
|
||||||
|
"goldleaf", "lithium", # title managers
|
||||||
|
"nsp", "xci", # "backup" formats
|
||||||
|
"nut", "doge", "cdnsp"] # cdn dlers/dumpers
|
||||||
self.ok_words = ["nspwn", "hblnsp", "exefs"]
|
self.ok_words = ["nspwn", "hblnsp", "exefs"]
|
||||||
|
|
||||||
@Cog.listener()
|
@Cog.listener()
|
||||||
|
|
Loading…
Reference in a new issue