aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-04-22 15:09:16 -0400
committerAlee <alee14498@gmail.com>2018-04-22 15:09:16 -0400
commitf7970f3a9cc94600309ff48d1a920040672899a5 (patch)
tree99e1be14a7cbd83ac7e6be693b53e1c5791f2c8c /commands
parent6d23c51eb64ce44269fc59c5289880b2d5c30396 (diff)
downloadAleeBot-f7970f3a9cc94600309ff48d1a920040672899a5.tar.gz
AleeBot-f7970f3a9cc94600309ff48d1a920040672899a5.tar.bz2
AleeBot-f7970f3a9cc94600309ff48d1a920040672899a5.zip
2.9 releasev2.9.0
Diffstat (limited to 'commands')
-rw-r--r--commands/addquote.js2
-rw-r--r--commands/changelog.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/addquote.js b/commands/addquote.js
index a957c59..fe42333 100644
--- a/commands/addquote.js
+++ b/commands/addquote.js
@@ -28,7 +28,7 @@ module.exports.run = async (client, message, args) => {
if(!args[0]) return message.reply(`Usage: ab:addquote [author] [authorImage] [quote] [year]`)
let quotes = JSON.parse(fs.readFileSync("./storage/quotes.json", "utf8"));
-
+
quotes = {
author: args[0],
authorImage: args[1],
diff --git a/commands/changelog.js b/commands/changelog.js
index d5d9584..2849d8d 100644
--- a/commands/changelog.js
+++ b/commands/changelog.js
@@ -22,7 +22,7 @@ module.exports.run = async (client, message) => {
const embed = new Discord.RichEmbed()
.setAuthor('AleeBot ' + require('../storage/settings.json').abVersion + ' Changelog', 'https://cdn.discordapp.com/avatars/282547024547545109/6c147a444ae328c38145ef1f74169e38.png?size=2048')
.setDescription('What\'s new in AleeBot '+ require('../storage/settings.json').abVersion +'?')
- .addField('1. Setting a custom prefix for AleeBot!', 'We\'ve finally did it! You can now set a prefix!')
+ .addField('1. Console commands!', 'Unfortunately they are not discord features but it\'s only for console.')
.setColor('#1fd619');
message.channel.send({embed});