diff options
author | 2023-02-11 19:01:29 -0500 | |
---|---|---|
committer | 2023-02-11 19:01:29 -0500 | |
commit | b13025a032ed275a903b9349bc855ecaf913b3f0 (patch) | |
tree | 019bba49a2323f9fecb02dfa87ae446d12fd4337 | |
parent | Make the infraction message mention @ModMail (diff) |
Update bot/exts/moderation/infraction/_utils.py
Put the bot mention in parentheses.
This is intended to make the message clearer, in the unlikely circumstance that someone does not have the ModMail bot account in their user cache.
Co-authored-by: Vivek Ashokkumar <[email protected]>
-rw-r--r-- | bot/exts/moderation/infraction/_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/infraction/_utils.py b/bot/exts/moderation/infraction/_utils.py index f63989265..c2ef80461 100644 --- a/bot/exts/moderation/infraction/_utils.py +++ b/bot/exts/moderation/infraction/_utils.py @@ -37,7 +37,7 @@ INFRACTION_TITLE = "Please review our rules" INFRACTION_APPEAL_SERVER_FOOTER = f"\nTo appeal this infraction, join our [appeals server]({APPEAL_SERVER_INVITE})." INFRACTION_APPEAL_MODMAIL_FOOTER = ( '\nIf you would like to discuss or appeal this infraction, ' - f'send a message to <@{MODMAIL_ACCOUNT_ID}>.' + f'send a message to the ModMail bot (<@{MODMAIL_ACCOUNT_ID}>).' ) INFRACTION_AUTHOR_NAME = "Infraction information" |