diff --git a/zoizbot/commandhandler.js b/zoizbot/commandhandler.js index c328236..6b5065b 100644 --- a/zoizbot/commandhandler.js +++ b/zoizbot/commandhandler.js @@ -7,7 +7,7 @@ zoizbot.on("ready", () => { zoizbot.on("guildJoin", guild => { console.log(` I have joined ${guild.name}, I will be serving ${guild.memberCount} members!`); // Join server message in the console - message.channel.send(` Hello ${guild.name} thank you for having me!`); + message.channel.send(` Hello ${guild.name}, thank you for having me!`); }); zoizbot.on("guildLeave", guild => { @@ -23,4 +23,4 @@ zoizbot.on("message", async message => { if (!cmd) return; //if the command doesnt exist gracefully return cmd.run(zoizbot, message, args); // and fire! -}); \ No newline at end of file +});