diff options
Diffstat (limited to 'commands/voice/play.js')
| -rw-r--r-- | commands/voice/play.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/voice/play.js b/commands/voice/play.js index 5fb5c7a..4248a48 100644 --- a/commands/voice/play.js +++ b/commands/voice/play.js @@ -4,6 +4,7 @@ const { MessageEmbed } = require('discord.js'); const Youtube = require('simple-youtube-api'); const { youtubeAPI } = require('../../config.json'); const youtube = new Youtube('AIzaSyB9xJENORzZt-GmOGx4WsNCPgKSIxhJcds'); // AIzaSyB9xJENORzZt-GmOGx4WsNCPgKSIxhJcds +const emoji = require('emoji-random'); module.exports = class PlayVoice extends Command { constructor(client) { @@ -67,7 +68,7 @@ module.exports = class PlayVoice extends Command { return this.playSong(msg.guild.musicData.queue, msg); } else if (msg.guild.musicData.isPlaying == true) { return msg.say( - `playlist - :musical_note: ${playlist.title} :musical_note: has been added to queue` + `playlist - :musical_note: ${playlist.title} :musical_note: has been added to queue` + emoji.random() ); } } |