From a4c778909d7b7e95d020ee288657ecea363993a4 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 27 Jun 2020 02:18:50 +0100 Subject: [PATCH] Changing it so that it pings me when a new member has joined the discord --- EnsoBot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EnsoBot.py b/EnsoBot.py index bfd6fb47..916f8bab 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -79,13 +79,13 @@ async def on_member_join(member): # Send embed to #newpeople await new_people.send(embed=embed) - # Set izzyID equal to my id in discord - izzyID = '<@&664585078487252993>' + # Set hamothyID equal to my id in discord + hamothyID = '<@&715412394968350756>' # String for welcoming people in the #general channel general_welcome = f"Welcome to the server! {member.mention} I hope you enjoy your stay here " \ f"\nPlease go into <#722347423913213992> to choose some ping-able roles for events! " \ - f"\nPlease ping {izzyID} for any questions about the server and of course, the other staff members!" + f"\nPlease ping {hamothyID} for any questions about the server and of course, the other staff members!" # Send welcome message to #general await general.send(general_welcome)