diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2021-12-05 03:06:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 21:06:36 -0500 |
commit | 624445fa6d6f19da1aead1aa2ecc15f878fae231 (patch) | |
tree | 13c6db6e2946b2cd07b4ddfe9bf4ad440596d04d /src/lib/badwords.ts | |
parent | 5569151f8e02f1ada0d5939b4867bcf8d5e15691 (diff) | |
download | tanzanite-624445fa6d6f19da1aead1aa2ecc15f878fae231.tar.gz tanzanite-624445fa6d6f19da1aead1aa2ecc15f878fae231.tar.bz2 tanzanite-624445fa6d6f19da1aead1aa2ecc15f878fae231.zip |
Scamlinks (#47)
* Scamlinks
* Update badlinks.ts
* Update badlinks.ts
* Update badlinks.ts
* Update badlinks.ts
* Summary
* Automatically format code
* Summary v2
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/lib/badwords.ts')
-rw-r--r-- | src/lib/badwords.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/badwords.ts b/src/lib/badwords.ts index df984f6..3a63273 100644 --- a/src/lib/badwords.ts +++ b/src/lib/badwords.ts @@ -74,6 +74,14 @@ export default { reason: "racist symbol", regex: false, }, + "space movie 1992": { + //? N word + severity: Severity.PERM_MUTE, + ignoreSpaces: true, + ignoreCapitalization: true, + reason: "racial slur", + regex: false, + }, /* -------------------------------------------------------------------------- */ /* Steam Scams */ @@ -400,6 +408,13 @@ export default { reason: "discord nitro scam phrase", regex: false, }, + "3 months nitro from styme,": { + severity: Severity.PERM_MUTE, + ignoreSpaces: true, + ignoreCapitalization: true, + reason: "discord nitro scam phrase", + regex: false, + }, /* -------------------------------------------------------------------------- */ /* Misc Scams */ |