diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/badwords.ts | 23 |
1 files changed, 15 insertions, 8 deletions
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; |