From fdfa4e15ff0ea4c022da9e82349e593817198897 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 19 Jun 2020 17:53:13 +0100 Subject: [PATCH] Updated welcome message to ping Izzy instead of me anymore --- EnsoBot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnsoBot.py b/EnsoBot.py index 0baf052a..7809f81b 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -132,12 +132,12 @@ async def on_member_join(member): await new_people.send(embed=embed) # Set hamothyID equal to my id in discord - hamothyID = '<@&715412394968350756>' + izzyID = '<@664585078487252993>' # 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 {hamothyID} for any questions about the server and of course, the other staff members!" + f"\nPlease ping {izzyID} for any questions about the server and of course, the other staff members!" # Send welcome message to #general await general.send(general_welcome)