diff options
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/addquote.js | 2 | ||||
| -rw-r--r-- | commands/changelog.js | 2 |
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});
|
