diff options
Diffstat (limited to 'commands/voice/itemshop.js')
| -rw-r--r-- | commands/voice/itemshop.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/voice/itemshop.js b/commands/voice/itemshop.js index 6550604..3c91f2a 100644 --- a/commands/voice/itemshop.js +++ b/commands/voice/itemshop.js @@ -1,5 +1,6 @@ const ytdl = require('ytdl-core'); const { Command } = require('discord.js-commando'); +const emoji = require('emoji-random'); module.exports = class ItemShopVoice extends Command { constructor(client) { @@ -19,7 +20,7 @@ module.exports = class ItemShopVoice extends Command { filter: 'audioonly' }); const dispatcher = connection.play(stream); - msg.reply('USE CODE FROZEN IN THE FORTNITE ITEM SHOP!!!'); + msg.reply('USE CODE FROZEN IN THE FORTNITE ITEM SHOP!!!' + emoji.random()); function timeCheck() { if (dispatcher.streamTime >= 6000) { |