welcome message doesn't mention role now

This commit is contained in:
2026-02-26 03:25:32 -05:00
parent 9e81118cf5
commit b9c9721158

View File

@@ -45,7 +45,7 @@ client.on(Events.GuildMemberAdd, async (member) => {
if (welcomeChannel) {
// This is my example for my server welcome message, feel free to change it up to fit your server's vibe!
await welcomeChannel.send(
`Eh Bro! Welcome to the Hub, <@${member.user.id}>! Grab a seat and say hello. You also have the Role ${roleMention} now, so you can check out the channels and get involved!`,
`Eh Bro! Welcome to the Hub, <@${member.user.id}>! Grab a seat and say hello. You also have the Role "Homies" now, so you can check out the channels and get involved!`,
);
}
} catch (error) {