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 ),