diff options
| -rw-r--r-- | aleebot.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -59,7 +59,7 @@ client.on('ready', () => { log(`[>] AleeBot is now ready! Running version ${abversion} in ${client.guilds.size} guilds`); client.user.setPresence({ game: { - name: 'with version' +abversion, + name: 'with version ' +abversion, type: 0 } }); @@ -102,7 +102,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 The command ${command} isn't found!`); + message.channel.send(`:no_entry_sign: Error!\n The command you're looking for isn't found try to type ab:help for commands!`); log(err); } |
