From 6d283a78fb355a4c5f39f2778b8c9d300fad35a1 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 1 Sep 2017 21:07:28 -0400 Subject: Updates on console --- aleebot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aleebot.js') diff --git a/aleebot.js b/aleebot.js index 45c9be3..0a3fbce 100644 --- a/aleebot.js +++ b/aleebot.js @@ -54,7 +54,7 @@ fs.readdir('./commands/', (err, files) => { client.on('ready', () => { - log("[>] AleeBot is now ready! Running version " + abversion + "!"); + log(`[>] AleeBot is now ready! Running version ${abversion} in ${client.guilds.size} guilds!`); client.user.setPresence({ game: { name: 'with version ' + abversion + '', -- cgit v1.2.3 From de3c80eccc8d09bc63c3694afdeba40795dd6539 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 8 Sep 2017 16:11:06 -0400 Subject: Updates on if the person types the wrong command --- aleebot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aleebot.js') diff --git a/aleebot.js b/aleebot.js index 0a3fbce..da7a719 100644 --- a/aleebot.js +++ b/aleebot.js @@ -100,7 +100,7 @@ client.on("message", function(message) { let commandFile = require(`./commands/${command}.js`); commandFile.run(client, message, args, config, abversion); } catch (err) { - message.channel.send(":no_entry_sign: Error!\n`"+ err +"`"); + message.channel.send(`:no_entry_sign: Error!\n The command ${command} isn't found!`); log(err); } -- cgit v1.2.3