From b9c9721158e98ff59bd805d96779918014178354 Mon Sep 17 00:00:00 2001 From: Chad Doty Date: Thu, 26 Feb 2026 03:25:32 -0500 Subject: [PATCH] welcome message doesn't mention role now --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 304edbf..8e1e502 100644 --- a/index.js +++ b/index.js @@ -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) {