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
No known key found for this signature in database
GPG Key ID: 68FAB2E2E6DFC98B
2 changed files with 5 additions and 5 deletions

View File

@ -116,10 +116,10 @@ protections:
# of the word is present in the message in any case. e.g. "poop" also matches # of the word is present in the message in any case. e.g. "poop" also matches
# "poOPYHEad". Additionally, regular expressions can be used. # "poOPYHEad". Additionally, regular expressions can be used.
words: words:
- "nigger" - "CaSe"
- "faggot" - "InSeNsAtIve"
- "tranny" - "WoRd"
- "retard" - "LiSt"
# How long after a user joins the server should the bot monitor their messages. After # 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. # 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) # Set to zero to disable (users will always be banned if they say a bad word)

View File

@ -97,7 +97,7 @@ const defaultConfig: IConfig = {
}, },
protections: { protections: {
wordlist: { wordlist: {
words: ["nigger", "faggot", "tranny", "retard"], words: [],
minutesBeforeTrusting: 20 minutesBeforeTrusting: 20
} }
}, },