From a90cf3cdb0d065049bcbfe9b30943a8eff38df30 Mon Sep 17 00:00:00 2001 From: jani270 Date: Sun, 13 Feb 2022 23:12:53 +0100 Subject: Removed DC Link - unused / Added 2 Malware phrases --- src/lib/badwords.ts | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/lib/badwords.ts b/src/lib/badwords.ts index 44a34cd..5086883 100644 --- a/src/lib/badwords.ts +++ b/src/lib/badwords.ts @@ -637,19 +637,26 @@ 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: "blacklisted server link", + reason: "malware phrasek", + regex: false, + }, + { + match: "tell me if something is wrong in the game", + severity: Severity.TEMP_MUTE, + ignoreSpaces: true, + ignoreCapitalization: true, + reason: "malware phrase", regex: false, }, ], + + /* -------------------------------------------------------------------------- */ + /* Frequently Advertised Discord Severs */ + /* -------------------------------------------------------------------------- */ + } as BadWords; -- cgit From c4d415668f7b116d92f09a1621267c0389d661c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Feb 2022 22:13:31 +0000 Subject: Automatically format code --- src/lib/badwords.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/lib/badwords.ts b/src/lib/badwords.ts index 5086883..b0adb02 100644 --- a/src/lib/badwords.ts +++ b/src/lib/badwords.ts @@ -658,5 +658,4 @@ export default { /* -------------------------------------------------------------------------- */ /* Frequently Advertised Discord Severs */ /* -------------------------------------------------------------------------- */ - } as BadWords; -- cgit From fd12f26ea3ad05ff49e38dc09ca14cff20c86948 Mon Sep 17 00:00:00 2001 From: jani270 Date: Mon, 14 Feb 2022 00:34:23 +0100 Subject: Added another 2 malware prases --- src/lib/badwords.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src') diff --git a/src/lib/badwords.ts b/src/lib/badwords.ts index b0adb02..9ce33fe 100644 --- a/src/lib/badwords.ts +++ b/src/lib/badwords.ts @@ -653,6 +653,22 @@ export default { 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, + }, ], /* -------------------------------------------------------------------------- */ -- cgit From f5a8a3af70aaffb3320689e46590c17bb4854b53 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 13 Feb 2022 19:39:45 -0500 Subject: fix: badwords typo --- src/lib/badwords.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/badwords.ts b/src/lib/badwords.ts index 9ce33fe..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, @@ -642,7 +642,7 @@ export default { severity: Severity.TEMP_MUTE, ignoreSpaces: true, ignoreCapitalization: true, - reason: "malware phrasek", + reason: "malware phrase", regex: false, }, { -- cgit