Update commandhandler.js

Typo
This commit is contained in:
2020-10-28 16:27:30 +01:00
committed by GitHub
parent bdcbb7f824
commit 4d4224b766

View File

@@ -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!
});
});