Removed default words from word list in favor of more neutral words

This commit is contained in:
Emi Tatsuo
2020-10-31 09:23:18 -04:00
parent 6fa93e3bae
commit 4c0bbd845d
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -116,10 +116,10 @@ protections:
# of the word is present in the message in any case. e.g. "poop" also matches
# "poOPYHEad". Additionally, regular expressions can be used.
words:
- "nigger"
- "faggot"
- "tranny"
- "retard"
- "CaSe"
- "InSeNsAtIve"
- "WoRd"
- "LiSt"
# How long after a user joins the server should the bot monitor their messages. After
# this time, users can say words from the wordlist without being banned automatically.
# Set to zero to disable (users will always be banned if they say a bad word)
+1 -1
View File
@@ -97,7 +97,7 @@ const defaultConfig: IConfig = {
},
protections: {
wordlist: {
words: ["nigger", "faggot", "tranny", "retard"],
words: [],
minutesBeforeTrusting: 20
}
},