From df6562802fe5455ff6a1bfabce44f4cdb7b63423 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 4 Sep 2023 22:13:48 +0300 Subject: [PATCH] add 3 profanity filters --- files/helpers/config/const.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index 1944dc3c6e..d10b8dc369 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -302,6 +302,9 @@ PROFANITIES = { 'cock(?![a-z])': 'peepee', 'cocks': 'peepees', 'penis': 'peepee', + 'pussy': 'kitty', + 'pussies': 'kitties', + 'cunt': 'c*nt', } PROFANITIES_FOR_REPLACING = {}