From 6a008fbf428d6c7c98b3f59ef31c6e8dc9ef8924 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 4 Jul 2021 15:14:48 -0600 Subject: [PATCH] Update wording on verify --- jarvis/cogs/verify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jarvis/cogs/verify.py b/jarvis/cogs/verify.py index f7ed39c..3a48754 100644 --- a/jarvis/cogs/verify.py +++ b/jarvis/cogs/verify.py @@ -55,7 +55,7 @@ class VerifyCog(commands.Cog): components = create_layout() message = await ctx.send( content=f"{ctx.author.mention}, " - + "please press the button that says `YES`", + + "please press the button that says `YES`.", components=components, ) await message.delete(delay=15) @@ -86,7 +86,7 @@ class VerifyCog(commands.Cog): role = ctx.guild.get_role(setting["value"]) await ctx.author.remove_roles(role, reason="Verified") await ctx.edit_origin( - content=f"{ctx.author.mention} has been verified", + content=f"Welcome, {ctx.author.mention}. Please enjoy your stay.", components=manage_components.spread_to_rows( *components, max_in_row=5 ),