Update wording on verify

This commit is contained in:
Zeva Rose 2021-07-04 15:14:48 -06:00
parent 10c6064a04
commit 6a008fbf42

View file

@ -55,7 +55,7 @@ class VerifyCog(commands.Cog):
components = create_layout() components = create_layout()
message = await ctx.send( message = await ctx.send(
content=f"{ctx.author.mention}, " content=f"{ctx.author.mention}, "
+ "please press the button that says `YES`", + "please press the button that says `YES`.",
components=components, components=components,
) )
await message.delete(delay=15) await message.delete(delay=15)
@ -86,7 +86,7 @@ class VerifyCog(commands.Cog):
role = ctx.guild.get_role(setting["value"]) role = ctx.guild.get_role(setting["value"])
await ctx.author.remove_roles(role, reason="Verified") await ctx.author.remove_roles(role, reason="Verified")
await ctx.edit_origin( 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=manage_components.spread_to_rows(
*components, max_in_row=5 *components, max_in_row=5
), ),