aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-13 20:39:18 -0500
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-13 20:39:18 -0500
commitc66e80752db6dfe66c57501ce33848c771a9fc13 (patch)
treecccd5231a4dd6d1aab524755b2b6f0a8d4c35739
parent3d0f8d6284fbff51881ba704f73765100ffc5f47 (diff)
parentf5a8a3af70aaffb3320689e46590c17bb4854b53 (diff)
downloadtanzanite-c66e80752db6dfe66c57501ce33848c771a9fc13.tar.gz
tanzanite-c66e80752db6dfe66c57501ce33848c771a9fc13.tar.bz2
tanzanite-c66e80752db6dfe66c57501ce33848c771a9fc13.zip
Merge branch 'master' of https://github.com/NotEnoughUpdates/bush-bot
-rw-r--r--src/lib/badwords.ts40
1 files changed, 31 insertions, 9 deletions
diff --git a/src/lib/badwords.ts b/src/lib/badwords.ts
index 44a34cd..44e0bb4 100644
--- a/src/lib/badwords.ts
+++ b/src/lib/badwords.ts
@@ -1,4 +1,4 @@
-import { type BadWords } from "./common/AutoMod.js";
+import type { BadWords } from "./common/AutoMod.js";
const enum Severity {
DELETE,
@@ -637,19 +637,41 @@ export default {
reason: "annoying copy pasta",
regex: false,
},
- ],
-
- /* -------------------------------------------------------------------------- */
- /* Frequently Advertised Discord Severs */
- /* -------------------------------------------------------------------------- */
- "Frequently Advertised Discord Severs": [
{
- match: "https://discord.gg/7CaCvDXs",
+ match: "i made a game can you test play ?",
+ severity: Severity.TEMP_MUTE,
+ ignoreSpaces: true,
+ ignoreCapitalization: true,
+ reason: "malware phrase",
+ regex: false,
+ },
+ {
+ match: "tell me if something is wrong in the game",
severity: Severity.TEMP_MUTE,
ignoreSpaces: true,
ignoreCapitalization: true,
- reason: "blacklisted server link",
+ reason: "malware phrase",
+ regex: false,
+ },
+ {
+ match: "Hi, can you check out the game I created today:)",
+ severity: Severity.TEMP_MUTE,
+ ignoreSpaces: true,
+ ignoreCapitalization: true,
+ reason: "malware phrase",
+ regex: false,
+ },
+ {
+ match: "Just want to get other people's opinions, what to add and what to remove.",
+ severity: Severity.TEMP_MUTE,
+ ignoreSpaces: true,
+ ignoreCapitalization: true,
+ reason: "malware phrase",
regex: false,
},
],
+
+ /* -------------------------------------------------------------------------- */
+ /* Frequently Advertised Discord Severs */
+ /* -------------------------------------------------------------------------- */
} as BadWords;