diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-12-03 10:20:41 -0500 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-12-03 10:20:41 -0500 |
| commit | f7fe198c269ac738ad9e8d3680d0d0b67b7c3390 (patch) | |
| tree | 2a298b9e24bc833ccf993737338999ec6f174681 | |
| parent | a39b9fd0eda81e3955aaa968495105235663b39d (diff) | |
| download | AstralQuote-ATC-f7fe198c269ac738ad9e8d3680d0d0b67b7c3390.tar.gz AstralQuote-ATC-f7fe198c269ac738ad9e8d3680d0d0b67b7c3390.tar.bz2 AstralQuote-ATC-f7fe198c269ac738ad9e8d3680d0d0b67b7c3390.zip | |
Added Continue in DMs
| -rw-r--r-- | bot.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,7 @@ const client = new Discord.Client(); const config = require('./config.json'); const aqVersion = "1.1.2"; const prefix = "aq:"; + const log = message => { console.log(`[${moment().format('YYYY-MM-DD HH:mm:ss')}] ${message}`); @@ -25,7 +26,7 @@ const SuggestQuoteStartMessage = "**Quote Suggestion**\n" + "- New bots.\n\n" + "Wait 30 seconds, and then respond with `y` if you understood the above.\n" + "Please note this feature doesn't work **yet**" - + var QuoteOfTheDay; var QuoteOfTheDayExpiry = 0; var QuoteOfTheDayStartTime; @@ -442,6 +443,7 @@ client.on('message', message => { "Ha, you found an easter egg! Take that, aq:easteregg!" + "\n```"); } else if (command === 'contribute') { + message.reply(':arrow_left: Continue in DMs.') message.author.send("I can see you want to help AQ? Welp here's the link: https://github.com/ATC-Parody/AstralQuote"); } else if (command === 'uptime') { var timeString; // What we'll eventually put into the message |
