aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2020-08-02 22:25:18 +0200
committerGravatar kwzrd <[email protected]>2020-08-02 23:11:02 +0200
commitfad796101d5f641c0c4315244303c8727df0462f (patch)
treeee31eea6874371466deb31fbe98ac3b89751ff8e
parentVerification: add initial on join message (diff)
Verification: adjust & rename welcome message
Let's give it a better name so that it's clear when this message is sent. The initial words are adjusted to avoid repetition after the on join message.
-rw-r--r--bot/cogs/verification.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py
index 2293cad28..c10940817 100644
--- a/bot/cogs/verification.py
+++ b/bot/cogs/verification.py
@@ -19,8 +19,8 @@ In order to send messages, you first have to accept our rules. To do so, please
<#{constants.Channels.verification}>. Thank you!
"""
-WELCOME_MESSAGE = f"""
-Hello! Welcome to the server, and thanks for verifying yourself!
+VERIFIED_MESSAGE = f"""
+Thanks for verifying yourself!
For your records, these are the documents you accepted:
@@ -121,7 +121,7 @@ class Verification(Cog):
log.debug(f"{ctx.author} called !accept. Assigning the 'Developer' role.")
await ctx.author.add_roles(Object(constants.Roles.verified), reason="Accepted the rules")
try:
- await ctx.author.send(WELCOME_MESSAGE)
+ await ctx.author.send(VERIFIED_MESSAGE)
except Forbidden:
log.info(f"Sending welcome message failed for {ctx.author}.")
finally: