aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/addquote.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/commands/addquote.js b/commands/addquote.js
index e5290bc..a957c59 100644
--- a/commands/addquote.js
+++ b/commands/addquote.js
@@ -18,8 +18,6 @@
*
* *************************************/
module.exports.run = async (client, message, args) => {
- message.reply('This command is in working progress');
- /*
const moment = require('moment');
const log = message => {
@@ -27,7 +25,7 @@ module.exports.run = async (client, message, args) => {
};
const fs = require('fs');
- if(!args[0]) return message.reply(`Usage: ab:addquote [author] [authorImage] [quote]`)
+ if(!args[0]) return message.reply(`Usage: ab:addquote [author] [authorImage] [quote] [year]`)
let quotes = JSON.parse(fs.readFileSync("./storage/quotes.json", "utf8"));
@@ -43,7 +41,7 @@ module.exports.run = async (client, message, args) => {
})
message.reply(`You just added a new quote!`);
- log(`[i] A quote has been added to quotes.json...`) */
+ log(`[i] A quote has been added to quotes.json...`)
};
exports.conf = {