Initial Fork + Updates

- New customizable storage library
This commit is contained in:
Logan Cusano
2023-02-19 20:22:18 -05:00
parent e52dad8451
commit 18b960231d
16 changed files with 16878 additions and 2444 deletions

View File

@@ -7,7 +7,7 @@ module.exports = {
try {
var quotes = await libFlayer.getQuotes(quote_url);
var selectedQuote = Math.floor(Math.random() * quotes.length);
message.reply(quotes[selectedQuote].q + " - " + quotes[selectedQuote].a);
message.reply(quotes[selectedQuote].quoteText + " - " + quotes[selectedQuote].quoteAuthor);
} catch (e) {
message.reply(e.toString());
}