Skip to content

Setting up filters

Chat filters are a powerful tool to censor words, IPs or URLs:

Chat Filter Example

Filtering by literals

chat.yml
    filter:
        # ...
        literalFilter:
        - i hope you step on a lego

This will censor the phrase "i hope you step on a lego". Literal filters are case insensitive.

Filtering by regex

Advanced users can also filter with their own RegEx rules. Here's an example:

    filter:
        # ...
        customRegexFilter:
        - ^dog

This will censor every word that starts with "dog".