diff --git a/discordBot/events/guildMemberAdd.mjs b/discordBot/events/guildMemberAdd.mjs index d31d798..2d7c562 100644 --- a/discordBot/events/guildMemberAdd.mjs +++ b/discordBot/events/guildMemberAdd.mjs @@ -14,7 +14,7 @@ export async function execute(nodeIo, member) { let conversation = []; conversation.push({ role: 'system', - content: `There has been a new user that joined. Their name is '${member.id}'. Please welcome them to the server and remind them about the rules.` + content: `There has been a new user that joined. Their name is '<@${member.id}>'. Please welcome them to the server and remind them about the rules.` }) const response = await gptHandler(conversation);