Structure config_template.py further
This commit is contained in:
parent
fd845ecb40
commit
287cdd0cc3
1 changed files with 24 additions and 23 deletions
|
@ -75,8 +75,8 @@ staff_role_ids = [
|
||||||
360138431524765707, # Mod role in ReSwitched
|
360138431524765707, # Mod role in ReSwitched
|
||||||
466447265863696394, # Bot management role in ReSwitched
|
466447265863696394, # Bot management role in ReSwitched
|
||||||
360138163156549632, # Admin role in ReSwitched
|
360138163156549632, # Admin role in ReSwitched
|
||||||
287289529986187266,
|
287289529986187266, # Wizard role in ReSwitched
|
||||||
] # Wizard role in ReSwitched
|
]
|
||||||
|
|
||||||
# Various log channels used to log bot and guild's activity
|
# Various log channels used to log bot and guild's activity
|
||||||
# You can use same channel for multiple log types
|
# You can use same channel for multiple log types
|
||||||
|
@ -129,30 +129,20 @@ hourly_clean_channels = []
|
||||||
# Edited and deletes messages in these channels will be logged
|
# Edited and deletes messages in these channels will be logged
|
||||||
spy_channels = general_channels
|
spy_channels = general_channels
|
||||||
|
|
||||||
# Channels and roles where users can pin messages
|
|
||||||
allowed_pin_channels = []
|
|
||||||
allowed_pin_roles = []
|
|
||||||
|
|
||||||
# Channel to upload text files while editing list items. (They are cleaned up.)
|
|
||||||
list_files_channel = 0
|
|
||||||
|
|
||||||
# Channels that are lists that are controlled by the lists cog.
|
|
||||||
list_channels = []
|
|
||||||
|
|
||||||
# All lower case, no spaces, nothing non-alphanumeric
|
# All lower case, no spaces, nothing non-alphanumeric
|
||||||
suspect_words = [
|
suspect_words = [
|
||||||
"sx",
|
"sx", # piracy-enabling cfw
|
||||||
"tx",
|
"tx", # piracy-enabling cfw
|
||||||
"reinx", # piracy-enabling cfws
|
"reinx", # piracy-enabling cfw
|
||||||
"gomanx", # piracy-enabling cfws
|
"gomanx", # piracy-enabling cfw
|
||||||
"tinfoil",
|
"tinfoil", # title manager
|
||||||
"dz", # title managers
|
"dz", # title manager
|
||||||
"goldleaf",
|
"goldleaf", # potential title manager
|
||||||
"lithium", # title managers
|
"lithium", # title manager
|
||||||
"cracked", # older term for pirated games
|
"cracked", # older term for pirated games
|
||||||
"xci",
|
"xci", # "backup" format
|
||||||
"nsz",
|
"nsz", # "backup" format
|
||||||
] # "backup" format
|
]
|
||||||
|
|
||||||
# List of words that will be ignored if they match one of the
|
# List of words that will be ignored if they match one of the
|
||||||
# suspect_words (This is used to remove false positives)
|
# suspect_words (This is used to remove false positives)
|
||||||
|
@ -172,6 +162,17 @@ suspect_ignored_words = [
|
||||||
# Used for the pinboard. Leave empty if you don't wish for a gist pinboard.
|
# Used for the pinboard. Leave empty if you don't wish for a gist pinboard.
|
||||||
github_oauth_token = ""
|
github_oauth_token = ""
|
||||||
|
|
||||||
|
# Channels and roles where users can pin messages
|
||||||
|
allowed_pin_channels = []
|
||||||
|
allowed_pin_roles = []
|
||||||
|
|
||||||
|
# Channel to upload text files while editing list items. (They are cleaned up.)
|
||||||
|
list_files_channel = 0
|
||||||
|
|
||||||
|
# == Only if you want to use cogs.lists ==
|
||||||
|
# Channels that are lists that are controlled by the lists cog.
|
||||||
|
list_channels = []
|
||||||
|
|
||||||
# == For cogs.verification ==
|
# == For cogs.verification ==
|
||||||
# ReSwitched verification system is rather unique.
|
# ReSwitched verification system is rather unique.
|
||||||
# You might want to reimplement it.
|
# You might want to reimplement it.
|
||||||
|
|
Loading…
Reference in a new issue