logs: document susp words

This commit is contained in:
Ave Ozkal 2019-03-03 21:08:46 +03:00
parent 374b1e8437
commit 841fe43104
No known key found for this signature in database
GPG key ID: 09356ABAA42C842B

View file

@ -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()