From c67b75507530f2b6172a8acd9b8c97ca755be87d Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 13 Mar 2023 01:24:50 +0100 Subject: [PATCH] Re-adding thank you message for submitting application --- recruitmentCog/recruitment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recruitmentCog/recruitment.py b/recruitmentCog/recruitment.py index 32ba007..2959874 100644 --- a/recruitmentCog/recruitment.py +++ b/recruitmentCog/recruitment.py @@ -61,6 +61,8 @@ class Recruitment(commands.Cog): role = guild.get_role(531181363420987423) await member.add_roles(role) + await author.send("Thank you for submitting your application! You have been given the 'Trial' role.") + async def format_application(self, answers: List[str], author: discord.Member) -> discord.Embed: """Format the application answers into an embed.""" embed = discord.Embed(title=f"Application from {author.display_name}", color=discord.Color.green())