diff options
Diffstat (limited to 'bot.js')
| -rw-r--r-- | bot.js | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -42,7 +42,7 @@ function GetQuoteOfTheDay(quoteNum = -1) { var url; if (quoteNum == -1) { - quoteNum = Math.floor(Math.random() * 1000) % 29; + quoteNum = Math.floor(Math.random() * 1000) % 30; } @@ -249,6 +249,13 @@ function GetQuoteOfTheDay(quoteNum = -1) { year = "2017" url = "https://www.example.com/" //TODO: Find a URL break; + case 29: + author = "TheMemeKnight"; + authorImage = "https://cdn.discordapp.com/avatars/267766634452615168/df08523e0ca30929ceb0dc28dcda8f78.png?size=2048"; + quote = "@Alee14 Do YoU kNoW hOw It FeElS tO bE iN mY sOcKs" + year = "2017" + url = "https://www.example.com/" //TODO: Find a URL + break; } QuoteOfTheDay.setAuthor(author, authorImage); |
