diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-07-27 15:33:24 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-07-27 15:33:24 -0400 |
| commit | 1249e5d1d8be90852e46576ea90c709237032450 (patch) | |
| tree | 084b8e20f4fe9c5ddec6ee6ed5c5e82d4e55368f | |
| parent | 304851155e70d28b58f228c8e372c7014261fd1b (diff) | |
| download | AleeBot-1249e5d1d8be90852e46576ea90c709237032450.tar.gz AleeBot-1249e5d1d8be90852e46576ea90c709237032450.tar.bz2 AleeBot-1249e5d1d8be90852e46576ea90c709237032450.zip | |
Removed version command, added the version to ab:help & updated to 1.0.5
| -rw-r--r-- | aleebot.js | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -14,7 +14,7 @@ const client = new Discord.Client(); const config = require('./abtoken.json'); var prefix = "ab:"; -var ver = "1.0.4"; +var ver = "1.0.5"; var logsChannel = "318874545593384970"; client.on('ready', () => { @@ -153,8 +153,8 @@ client.on("message", function(message){ 'ab:git\n' + 'ab:ping\n' + 'ab:owner\n' + - 'ab:suggest\n' + - 'ab:version ```'); + 'ab:suggest\n\n' + + "The version that AleeBot's running is " + ver + "!```"); } if(message.content === prefix + 'owner'){ @@ -166,9 +166,6 @@ client.on("message", function(message){ message.reply('Sorry this feature is still being worked on :('); } - if(message.content === prefix + 'version') { - message.channel.send("AleeBot's version is " + ver + "."); - } }); |
