Add user id to user-related messages

This commit is contained in:
Tarrgon
2025-11-18 11:49:09 -05:00
parent f86bda1ff3
commit ed6cd90627
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export async function handleMemberJoin(member: GuildMember) {
const channel = await member.guild.channels.fetch(guildSettings.new_member_channel_id) as GuildTextBasedChannel;
if (channel) {
const content = `${member.toString()}'s e621 and discord account(s):\n${await getE621Alts(member.id, member.guild)}`;
const content = `${member.toString()}'s (${member.id}) e621 and discord account(s):\n${await getE621Alts(member.id, member.guild)}`;
channel.send(content).catch(console.error);