aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-10-19 13:39:44 +0200
committerGravatar GitHub <[email protected]>2021-10-19 13:39:44 +0200
commit8e4fe2e73198edb37eb1dcffb7f531a69cec34c2 (patch)
treeae0ff1a3d96a84f18d72c671a488bdc9e41168e9
parentFiltering: add autoban on specific reasons (diff)
Filtering: update auto-ban message
Co-authored-by: Boris Muratov <[email protected]>
-rw-r--r--bot/exts/filters/filtering.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/filters/filtering.py b/bot/exts/filters/filtering.py
index ad67f3469..82bbd880e 100644
--- a/bot/exts/filters/filtering.py
+++ b/bot/exts/filters/filtering.py
@@ -43,8 +43,8 @@ ZALGO_RE = regex.compile(rf"[\p{{NONSPACING MARK}}\p{{ENCLOSING MARK}}--[{VARIAT
DAYS_BETWEEN_ALERTS = 3
OFFENSIVE_MSG_DELETE_TIME = timedelta(days=Filter.offensive_msg_delete_days)
AUTO_BAN_REASON = (
- "Your account seem to be compromised (%s). "
- "Please appeal this ban once you have regained control of your account."
+ "Your account seems to be compromised (%s). "
+ "You're welcome to appeal this ban once you have regained control of your account."
)
FilterMatch = Union[re.Match, dict, bool, List[discord.Embed]]