From 461b7e547ccc4dde09b1222d43aac7c3ee94e39c Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Tue, 25 Dec 2018 13:46:59 +0300 Subject: [PATCH] verification: Clarify process on "Incorrect" message --- cogs/verification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/verification.py b/cogs/verification.py index 4e2dab1..a9eb2db 100644 --- a/cogs/verification.py +++ b/cogs/verification.py @@ -109,7 +109,7 @@ class Verification: @commands.check(check_if_staff) @commands.command() async def reset(self, ctx, limit: int = 100, force: bool = False): - """Wipes messages in #newcomers and pastes the welcome message again. Staff only.""" + """Wipes messages and pastes the welcome message again. Staff only.""" if ctx.message.channel.id != config.welcome_channel and not force: await ctx.send(f"This command is limited to" f" <#{config.welcome_channel}>, unless forced.") @@ -192,7 +192,7 @@ class Verification: elif any(allow in mcl for allow in md5_allow): await chan.send(f"{message.author.mention} :no_entry: Close, but incorrect. You're processing your name and discriminator properly, but you're not using the right process. Please re-read the rules carefully and look up any terms you are not familiar with.") elif full_name in message.content or str(member.id) in message.content or member.name in message.content or discrim in message.content: - await chan.send(f"{message.author.mention} :no_entry: Incorrect. You need to do something with your name and discriminator instead of just posting it. Please re-read the rules carefully and look up any terms you are not familiar with.") + await chan.send(f"{message.author.mention} :no_entry: Incorrect. You need to do something *specific* with your name and discriminator instead of just posting it. Please re-read the rules carefully and look up any terms you are not familiar with.") async def on_message(self, message): try: