How to filter out mentions?Solved

So I have an issue with @-mentions. For obvious reasons I want to filter out @here and @everyone (and all mentions really). However, it does not seem to work.

I use updated versions of BetterChat and DiscordLogger along BetterChatFilter.

Current config:

{
  "Advanced - Regex to use": "",
  "Advanced - Use REGEX": false,
  "Clear Offense After (0 - Disabled, 1 - All Kick/Mute/ban, 2 - Kick,  3 - Mute,  4 - Ban": 0,
  "Exclude Team Chat": false,
  "Offenses - Broadcast Ban": true,
  "Offenses - Broadcast kick": true,
  "Offenses - Count To Ban": 20,
  "Offenses - Count To Kick": 3,
  "Offenses - Count To Mute": 3,
  "Offenses - Time To Mute": 300,
  "Time to Ban in Minutes": 30,
  "Warn Players with offense amount": false,
  "Word Filter - Custom Replacement": "Unicorn",
  "Word Filter - Enabled": true,
  "Word Filter - Phrases": [
    "@here",
    "@@here",
    "@everyone",
    "@@everyone",
    "@",
    "@@"
  ],
  "Word Filter - Replacement": "*",
  "Word Filter - Use Custom Replacement": true,
  "Word To White List": [
    "night"
  ]
}​

I managed to filter phrases not using "@" so I guess there is something I did wrong with that. However my issue was resolved by changing a row in the lang file of another mod into using "`" before and after the message.

Locked automatically