diff options
author | 2020-05-14 09:56:55 +0200 | |
---|---|---|
committer | 2020-05-14 09:56:55 +0200 | |
commit | 8d595467aba4bcde76caa6f6b9eccf8a9b73b0c5 (patch) | |
tree | cc04f702563bb23c5939557fe54dd2dca9db0c49 | |
parent | Merge pull request #899 from ks129/python-news (diff) |
Remove everyone-ping from mentions alert
The mentions alert that is sent out by the Verification cog currently pings `@everyone` despite being quite unactionable by most people receiving the ping. As it happens frequently, especially with the recent uptick in joins, I'm removing that ping to not bother our moderators as much.
-rw-r--r-- | bot/cogs/verification.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py index 388b7a338..b1ab7be4d 100644 --- a/bot/cogs/verification.py +++ b/bot/cogs/verification.py @@ -92,7 +92,6 @@ class Verification(Cog): text=embed_text, thumbnail=message.author.avatar_url_as(static_format="png"), channel_id=constants.Channels.mod_alerts, - ping_everyone=constants.Filter.ping_everyone, ) ctx: Context = await self.bot.get_context(message) |