summaryrefslogtreecommitdiff
path: root/commands/fun
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-10 11:43:19 -0700
committer8cy <[email protected]>2020-04-10 11:43:19 -0700
commit1134df0330ce4a8f2e9af97a638a5ffeac83be17 (patch)
tree25d150ad5e68bd975b570f63645bac3aca05a014 /commands/fun
parentset default vol to 10%, 2.0.1 (diff)
downloads5nical-1134df0330ce4a8f2e9af97a638a5ffeac83be17.tar.xz
s5nical-1134df0330ce4a8f2e9af97a638a5ffeac83be17.zip
cool update :D, v2.0.2
- fix queue - random emojis behind confirm messages :D
Diffstat (limited to 'commands/fun')
-rw-r--r--commands/fun/quote.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/fun/quote.js b/commands/fun/quote.js
index 2496ef3..cde9e90 100644
--- a/commands/fun/quote.js
+++ b/commands/fun/quote.js
@@ -1,5 +1,6 @@
const atquotes = require('at-quotes');
const { Command } = require('discord.js-commando');
+const emoji = require('emoji-random');
module.exports = class QuoteFun extends Command {
constructor(client) {
@@ -19,11 +20,11 @@ module.exports = class QuoteFun extends Command {
if (!args.length) {
msg.reply(atquotes.getQuote());
} else if (args[0] == 'finn') {
- msg.reply(atquotes.getFinnQuote());
+ msg.reply(atquotes.getFinnQuote() + emoji.random());
} else if (args[0] == 'jake') {
- msg.reply(atquotes.getJakeQuote());
+ msg.reply(atquotes.getJakeQuote() + emoji.random());
} else if (args[0] == 'ice-king') {
- msg.reply(atquotes.getIceKingQuote());
+ msg.reply(atquotes.getIceKingQuote() + emoji.random());
}
}
}; \ No newline at end of file