diff options
Diffstat (limited to 'commands/voice/itemshop.js')
| -rw-r--r-- | commands/voice/itemshop.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/voice/itemshop.js b/commands/voice/itemshop.js index 7a20b6a..d207bac 100644 --- a/commands/voice/itemshop.js +++ b/commands/voice/itemshop.js @@ -21,12 +21,12 @@ module.exports = class ABeeVoice extends Command { } async run(msg, { query }) { const voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.say('join a channel and try again'); + if (!voiceChannel) return msg.say('join a channel and try again ' + emoji.random()); const id = 'pBiI1hTwU7E'; const video = await youtube.getVideoByID(id).catch(function () { return msg.say( - 'there was a problem getting the video you provided' + 'there was a problem getting the video you provided ' + emoji.random() ); }); // // can be uncommented if you don't want the bot to play live streams @@ -54,7 +54,7 @@ module.exports = class ABeeVoice extends Command { return this.playSong(msg.guild.musicData.queue, msg); } else if (msg.guild.musicData.isPlaying == true) { msg.reply('USE CODE FROZEN IN THE FORTNITE ITEM SHOP!!! ' + emoji.random()); - msg.say(`${video.title} added to queue`); + msg.say(`${video.title} added to queue ` + emoji.random()); return; } |