From b9b82004cd5e7b64deb1b20e2ea17353f4d01deb Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Sun, 12 Apr 2020 05:48:25 -0700 Subject: emojis for all :D, 3.0.2 --- commands/fun/gay.js | 2 +- commands/fun/say.js | 2 +- commands/utility/btc.js | 2 +- commands/utility/btcchange.js | 8 ++++---- commands/utility/clear.js | 10 +++++----- commands/voice/abee.js | 12 ++++++------ commands/voice/itemshop.js | 6 +++--- commands/voice/join.js | 4 ++-- commands/voice/leave.js | 6 +++--- commands/voice/loop.js | 4 ++-- commands/voice/moan.js | 4 ++-- commands/voice/pause.js | 4 ++-- commands/voice/play.js | 22 +++++++++++----------- commands/voice/psycho.js | 12 ++++++------ commands/voice/queue.js | 4 ++-- commands/voice/remove.js | 6 +++--- commands/voice/resume.js | 4 ++-- commands/voice/shuffle.js | 6 +++--- commands/voice/skip.js | 4 ++-- commands/voice/skipall.js | 6 +++--- commands/voice/skipto.js | 8 ++++---- commands/voice/squeak.js | 4 ++-- commands/voice/volume.js | 4 ++-- commands/voice/wahoo.js | 4 ++-- 24 files changed, 74 insertions(+), 74 deletions(-) diff --git a/commands/fun/gay.js b/commands/fun/gay.js index 526be74..1a45374 100644 --- a/commands/fun/gay.js +++ b/commands/fun/gay.js @@ -26,7 +26,7 @@ module.exports = class GayFun extends Command { msg.reply('scanning..').then(scanningMsg => { scanningMsg.delete() - msg.reply('your gay-ness amount is **' + gayAmount + '.' + gayAmountDecimal + '%**'); + msg.reply('your gay-ness amount is **' + gayAmount + '.' + gayAmountDecimal + '%** 🏳️‍🌈'); }); } }; \ No newline at end of file diff --git a/commands/fun/say.js b/commands/fun/say.js index 703b95f..07c6dba 100644 --- a/commands/fun/say.js +++ b/commands/fun/say.js @@ -23,7 +23,7 @@ module.exports = class SayFun extends Command { msg.channel.send(say); msg.delete(); } else { - msg.reply('insufficent perms homie'); + msg.reply('insufficent perms homie ' + emoji.random()); } } }; \ No newline at end of file diff --git a/commands/utility/btc.js b/commands/utility/btc.js index 6288c50..128ac66 100644 --- a/commands/utility/btc.js +++ b/commands/utility/btc.js @@ -27,7 +27,7 @@ module.exports = class BTCUtility extends Command { run(msg, { currencyName }) { currencyName = currencyName.toUpperCase(); btc({ isDecimal: true, currencyCode: currencyName }).then(value => { - msg.reply('the current *bitcoin* price in **' + currencyName + '** is **' + value + '**'); + msg.reply('the current *bitcoin* price in **' + currencyName + '** is **' + value + '** ' + emoji.random()); }); } }; \ No newline at end of file diff --git a/commands/utility/btcchange.js b/commands/utility/btcchange.js index a113d2d..ccfc271 100644 --- a/commands/utility/btcchange.js +++ b/commands/utility/btcchange.js @@ -28,18 +28,18 @@ module.exports = class BTCChangeUtility extends Command { run(msg, { timeAmount }) { if (timeAmount == 'day') { btc.getPercentageChangeLastDay().then(percentage => { - msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%**'); + msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%** ' + emoji.random()); }); } else if (timeAmount == 'hour') { btc.getPercentageChangeLastHour().then(percentage => { - msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%**'); + msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%** ' + emoji.random()); }); } else if (timeAmount == 'week') { btc.getPercentageChangeLastWeek().then(percentage => { - msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%**'); + msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%** ' + emoji.random()); }); } else { - msg.reply('*' + timeAmount + '* is not a valid range lol'); + msg.reply('*' + timeAmount + '* is not a valid range lol ' + emoji.random()); } } }; \ No newline at end of file diff --git a/commands/utility/clear.js b/commands/utility/clear.js index c64c092..d563501 100644 --- a/commands/utility/clear.js +++ b/commands/utility/clear.js @@ -29,19 +29,19 @@ module.exports = class ClearUtility extends Command { async run(msg, { deleteAmount }) { if (msg.member.hasPermission('MANAGE_MESSAGES')) { if (!deleteAmount) { - msg.reply('you haven\'t specified an amount of messages which should be deleted.').then(deleteNotificationMessage => { + msg.reply('you haven\'t specified an amount of messages which should be deleted. ' + emoji.random()).then(deleteNotificationMessage => { deleteNotificationMessage.delete({ timeout: 1000 }); }); } else if (isNaN(deleteAmount)) { - msg.reply('the amount parameter isn\'t a number.').then(deleteNotificationMessage => { + msg.reply('the amount parameter isn\'t a number. ' + emoji.random()).then(deleteNotificationMessage => { deleteNotificationMessage.delete({ timeout: 1000 }); }); } else if (deleteAmount > 100) { - msg.reply('you can\'t delete more than 100 messages at once.').then(deleteNotificationMessage => { + msg.reply('you can\'t delete more than 100 messages at once. ' + emoji.random()).then(deleteNotificationMessage => { deleteNotificationMessage.delete({ timeout: 1000 }); }); } else if (deleteAmount < 1) { - msg.reply('you have to delete at least 1 message.').then(deleteNotificationMessage => { + msg.reply('you have to delete at least 1 message. ' + emoji.random()).then(deleteNotificationMessage => { deleteNotificationMessage.delete({ timeout: 1000 }); }); } @@ -64,7 +64,7 @@ module.exports = class ClearUtility extends Command { }); } } else { - msg.reply('insufficent perms bruh'); + msg.reply('insufficent perms bruh ' + emoji.random()); } } }; \ No newline at end of file diff --git a/commands/voice/abee.js b/commands/voice/abee.js index a683b08..953c249 100644 --- a/commands/voice/abee.js +++ b/commands/voice/abee.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 = 'lvdnhWhQBdo'; 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 @@ -53,7 +53,7 @@ module.exports = class ABeeVoice extends Command { msg.guild.musicData.isPlaying = true; return this.playSong(msg.guild.musicData.queue, msg); } else if (msg.guild.musicData.isPlaying == true) { - return msg.say(`${video.title} added to queue`); + return msg.say(`${video.title} added to queue ` + emoji.random()); } var that = this; @@ -105,7 +105,7 @@ module.exports = class ABeeVoice extends Command { if (songEmbed) { songEmbed.delete(); } - return msg.say(`${video.title} added to queue`); + return msg.say(`${video.title} added to queue ` + emoji.random()); } }) .catch(function () { @@ -113,7 +113,7 @@ module.exports = class ABeeVoice extends Command { songEmbed.delete(); } return msg.say( - 'an error has occured when trying to get the video id from youtube' + 'an error has occured when trying to get the video id from youtube ' + emoji.random() ); }); }); @@ -156,7 +156,7 @@ module.exports = class ABeeVoice extends Command { } }) .on('error', function (e) { - msg.say('can\'t play song'); + msg.say('can\'t play song ' + emoji.random()); console.error(e); msg.guild.musicData.queue.length = 0; msg.guild.musicData.isPlaying = false; 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; } diff --git a/commands/voice/join.js b/commands/voice/join.js index 9ee6f9d..12c6e60 100644 --- a/commands/voice/join.js +++ b/commands/voice/join.js @@ -21,9 +21,9 @@ module.exports = class JoinVoice extends Command { msg.member.voice.channel.join(); msg.reply('succesfully joined voice channel ' + emoji.random()); } else if (msg.guild.voice) { - msg.reply('i\'m already in voice channel'); + msg.reply('i\'m already in voice channel ' + emoji.random()); } else if (!msg.member.voice.channel) { - msg.reply('you\'re not in a voice channel'); + msg.reply('you\'re not in a voice channel ' + emoji.random()); } } }; \ No newline at end of file diff --git a/commands/voice/leave.js b/commands/voice/leave.js index 4779e9f..51456a6 100644 --- a/commands/voice/leave.js +++ b/commands/voice/leave.js @@ -15,16 +15,16 @@ module.exports = class LeaveVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there isn\'t a song playing right now lol'); + return msg.reply('there isn\'t a song playing right now lol ' + emoji.random()); } if (!msg.guild.musicData.queue) - return msg.say('there are no songs in queue rn lol'); + return msg.say('there are no songs in queue rn lol ' + emoji.random()); msg.guild.musicData.songDispatcher.end(); msg.guild.musicData.queue.length = 0; return; diff --git a/commands/voice/loop.js b/commands/voice/loop.js index 01bf48d..3679b4f 100644 --- a/commands/voice/loop.js +++ b/commands/voice/loop.js @@ -15,13 +15,13 @@ module.exports = class LoopVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there isn\'t a song playing right now lol'); + return msg.reply('there isn\'t a song playing right now lol ' + emoji.random()); } msg.channel.send( `${msg.guild.musicData.nowPlaying.title} added to queue ` + emoji.random() diff --git a/commands/voice/moan.js b/commands/voice/moan.js index fbfb191..03824e3 100644 --- a/commands/voice/moan.js +++ b/commands/voice/moan.js @@ -22,9 +22,9 @@ module.exports = class MoanVoice extends Command { connection.disconnect(); }); } else if (msg.guild.voice) { - msg.reply('i\'m already playing that lol'); + msg.reply('i\'m already playing that lol ' + emoji.random()); } else { - msg.reply('you need to join a voice channel first silly'); + msg.reply('you need to join a voice channel first silly ' + emoji.random()); } } }; \ No newline at end of file diff --git a/commands/voice/pause.js b/commands/voice/pause.js index 76324c5..f24d1ef 100644 --- a/commands/voice/pause.js +++ b/commands/voice/pause.js @@ -14,13 +14,13 @@ module.exports = class PauseVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there isn\'t a song playing right now lol'); + return msg.reply('there isn\'t a song playing right now lol ' + emoji.random()); } msg.say('song paused :pause_button:'); diff --git a/commands/voice/play.js b/commands/voice/play.js index 68e41a8..3ade6b5 100644 --- a/commands/voice/play.js +++ b/commands/voice/play.js @@ -33,7 +33,7 @@ module.exports = class PlayVoice 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()); if ( // if the user entered yt playlist url @@ -42,12 +42,12 @@ module.exports = class PlayVoice extends Command { ) ) { const playlist = await youtube.getPlaylist(query).catch(function () { - return msg.say('playlist is either private or it does not exist'); + return msg.say('playlist is either private or it does not exist ' + emoji.random()); }); // remove the 10 if you removed the queue limit conditions below const videosObj = await playlist.getVideos(10).catch(function () { return msg.say( - 'there was a problem getting one of the videos in the playlist' + 'there was a problem getting one of the videos in the playlist ' + emoji.random() ); }); for (let i = 0; i < videosObj.length; i++) { @@ -82,7 +82,7 @@ module.exports = class PlayVoice extends Command { const id = query[2].split(/[^0-9a-z_\-]/i)[0]; 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 @@ -109,19 +109,19 @@ module.exports = class PlayVoice extends Command { msg.guild.musicData.isPlaying = true; return this.playSong(msg.guild.musicData.queue, msg); } else if (msg.guild.musicData.isPlaying == true) { - return msg.say(`${video.title} added to queue`); + return msg.say(`${video.title} added to queue ` + emoji.random()); } } // if user provided a song/video name const videos = await youtube.searchVideos(query, 5).catch(function () { return msg.say( - 'there was a problem searching the video you requested :(' + 'there was a problem searching the video you requested :( ' + emoji.random() ); }); if (videos.length < 5) { return msg.say( - `i had some trouble finding what you were looking for, please try again or be more specific lol` + `i had some trouble finding what you were looking for, please try again or be more specific lol ` + emoji.random() ); } const vidNameArr = []; @@ -190,7 +190,7 @@ module.exports = class PlayVoice extends Command { if (songEmbed) { songEmbed.delete(); } - return msg.say(`${video.title} added to queue`); + return msg.say(`${video.title} added to queue ` + emoji.random()); } }) .catch(function () { @@ -198,7 +198,7 @@ module.exports = class PlayVoice extends Command { songEmbed.delete(); } return msg.say( - 'an error has occured when trying to get the video id from youtube' + 'an error has occured when trying to get the video id from youtube ' + emoji.random() ); }); }) @@ -207,7 +207,7 @@ module.exports = class PlayVoice extends Command { songEmbed.delete(); } return msg.say( - 'try again and enter a number between 1 and 5 or exit' + 'try again and enter a number between 1 and 5 or exit ' + emoji.random() ); }); } @@ -249,7 +249,7 @@ module.exports = class PlayVoice extends Command { } }) .on('error', function (e) { - msg.say('can\'t play song'); + msg.say('can\'t play song ' + emoji.random()); console.error(e); msg.guild.musicData.queue.length = 0; msg.guild.musicData.isPlaying = false; diff --git a/commands/voice/psycho.js b/commands/voice/psycho.js index 9676b27..ba45254 100644 --- a/commands/voice/psycho.js +++ b/commands/voice/psycho.js @@ -20,12 +20,12 @@ module.exports = class PsychoVoice 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 = 'fnd_HSmAODs'; 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 @@ -52,7 +52,7 @@ module.exports = class PsychoVoice extends Command { msg.guild.musicData.isPlaying = true; return this.playSong(msg.guild.musicData.queue, msg); } else if (msg.guild.musicData.isPlaying == true) { - return msg.say(`${video.title} added to queue`); + return msg.say(`${video.title} added to queue ` + emoji.random()); } var that = this; @@ -104,7 +104,7 @@ module.exports = class PsychoVoice extends Command { if (songEmbed) { songEmbed.delete(); } - return msg.say(`${video.title} added to queue`); + return msg.say(`${video.title} added to queue ` + emoji.random()); } }) .catch(function () { @@ -112,7 +112,7 @@ module.exports = class PsychoVoice extends Command { songEmbed.delete(); } return msg.say( - 'an error has occured when trying to get the video id from youtube' + 'an error has occured when trying to get the video id from youtube ' + emoji.random() ); }); }); @@ -155,7 +155,7 @@ module.exports = class PsychoVoice extends Command { } }) .on('error', function (e) { - msg.say('can\'t play song'); + msg.say('can\'t play song ' + emoji.random()); console.error(e); msg.guild.musicData.queue.length = 0; msg.guild.musicData.isPlaying = false; diff --git a/commands/voice/queue.js b/commands/voice/queue.js index f9dff73..bfcab09 100644 --- a/commands/voice/queue.js +++ b/commands/voice/queue.js @@ -33,7 +33,7 @@ module.exports = class QueueVoice extends Command { } run(msg) { if (msg.guild.musicData.queue.length == 0) - return msg.say('there are no songs in the queue lol'); + return msg.say('there are no songs in the queue lol ' + emoji.random()); const titleArray = []; msg.guild.musicData.queue.map(obj => { titleArray.push(obj.title); @@ -42,7 +42,7 @@ module.exports = class QueueVoice extends Command { .setColor(0xF97DAE) .setTitle('music queue ' + emoji.random()); for (let i = 0; i < titleArray.length; i++) { - queueEmbed.addField(`${i + 1}:`, `${titleArray[i]}`); + queueEmbed.addField(`‎`, `${i + 1}: ` + `${titleArray[i]}`); } return msg.say(queueEmbed); } diff --git a/commands/voice/remove.js b/commands/voice/remove.js index 370dd51..a336ae4 100644 --- a/commands/voice/remove.js +++ b/commands/voice/remove.js @@ -21,16 +21,16 @@ module.exports = class RemoveVoice extends Command { } run(msg, { songNumber }) { if (songNumber < 1 && songNumber >= msg.guild.musicData.queue.length) { - return msg.reply('enter a valid song number lol'); + return msg.reply('enter a valid song number lol ' + emoji.random()); } var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again lol'); + if (!voiceChannel) return msg.reply('join a channel and try again lol ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('no songs playing right now lol'); + return msg.reply('no songs playing right now lol ' + emoji.random()); } msg.guild.musicData.queue.splice(songNumber - 1, 1); diff --git a/commands/voice/resume.js b/commands/voice/resume.js index 1966d3a..dfd69f8 100644 --- a/commands/voice/resume.js +++ b/commands/voice/resume.js @@ -14,13 +14,13 @@ module.exports = class ResumeVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ') + emoji.random(); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there isn\'t a song playing right now lol'); + return msg.reply('there isn\'t a song playing right now lol ' + emoji.random()); } msg.say('song resumed :play_pause:'); diff --git a/commands/voice/shuffle.js b/commands/voice/shuffle.js index 0f9210c..3771f16 100644 --- a/commands/voice/shuffle.js +++ b/commands/voice/shuffle.js @@ -15,17 +15,17 @@ module.exports = class ShuffleVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join channel and try again k'); + if (!voiceChannel) return msg.reply('join channel and try again k ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there is no song playing right now'); + return msg.reply('there is no song playing right now ' + emoji.random()); } if (msg.guild.musicData.queue.length < 1) - return msg.say('There are no songs in queue'); + return msg.say('There are no songs in queue ' + emoji.random()); shuffleQueue(msg.guild.musicData.queue); diff --git a/commands/voice/skip.js b/commands/voice/skip.js index 075cc06..1bd70cd 100644 --- a/commands/voice/skip.js +++ b/commands/voice/skip.js @@ -14,13 +14,13 @@ module.exports = class SkipVoice extends Command { } run(msg) { const voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('no songs playing right now bruh'); + return msg.reply('no songs playing right now bruh ' + emoji.random()); } msg.guild.musicData.songDispatcher.end(); } diff --git a/commands/voice/skipall.js b/commands/voice/skipall.js index 65d5490..ad4f15e 100644 --- a/commands/voice/skipall.js +++ b/commands/voice/skipall.js @@ -25,16 +25,16 @@ module.exports = class SkipAllVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there is no song playing right now'); + return msg.reply('there is no song playing right now ' + emoji.random()); } if (!msg.guild.musicData.queue) - return msg.say('there are no songs in queue now >:)'); + return msg.say('there are no songs in queue now >:) ' + emoji.random()); msg.guild.musicData.songDispatcher.end(); msg.guild.musicData.queue.length = 0; // clear queue return; diff --git a/commands/voice/skipto.js b/commands/voice/skipto.js index 86bff00..65febfd 100644 --- a/commands/voice/skipto.js +++ b/commands/voice/skipto.js @@ -19,20 +19,20 @@ module.exports = class SkipToVoice extends Command { } run(msg, { songNumber }) { if (songNumber < 1 && songNumber >= msg.guild.musicData.queue.length) { - return msg.reply('enter a valid song number dumb'); + return msg.reply('enter a valid song number dumb ' + emoji.random()); } var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join channel and try again for cool'); + if (!voiceChannel) return msg.reply('join channel and try again for cool ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there is no song playing right now dumby'); + return msg.reply('there is no song playing right now dumby ' + emoji.random()); } if (msg.guild.musicData.queue < 1) - return msg.reply('there are no songs in queue rn'); + return msg.reply('there are no songs in queue rn ' + emoji.random()); msg.guild.musicData.queue.splice(0, songNumber - 1); msg.guild.musicData.songDispatcher.end(); diff --git a/commands/voice/squeak.js b/commands/voice/squeak.js index 04b664f..9d2b6a3 100644 --- a/commands/voice/squeak.js +++ b/commands/voice/squeak.js @@ -21,9 +21,9 @@ module.exports = class SqueakVoice extends Command { connection.disconnect(); }); } else if (msg.guild.voice) { - msg.reply('i\'m already playing that lol'); + msg.reply('i\'m already playing that lol ' + emoji.random()); } else { - msg.reply('you need to join a voice channel first silly'); + msg.reply('you need to join a voice channel first silly ' + emoji.random()); } } }; \ No newline at end of file diff --git a/commands/voice/volume.js b/commands/voice/volume.js index b8090ff..bd5f0b0 100644 --- a/commands/voice/volume.js +++ b/commands/voice/volume.js @@ -26,13 +26,13 @@ module.exports = class VolumeVoice extends Command { } run(msg, { wantedVol }) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there isn\'t a song playing right now lol'); + return msg.reply('there isn\'t a song playing right now lol ' + emoji.random()); } const volume = wantedVol / 100; diff --git a/commands/voice/wahoo.js b/commands/voice/wahoo.js index d815b8d..b457a37 100644 --- a/commands/voice/wahoo.js +++ b/commands/voice/wahoo.js @@ -22,9 +22,9 @@ module.exports = class WahooVoice extends Command { connection.disconnect(); }); } else if (msg.guild.voice) { - msg.reply('i\'m already playing that lol'); + msg.reply('i\'m already playing that lol ' + emoji.random()); } else { - msg.reply('you need to join a voice channel first silly'); + msg.reply('you need to join a voice channel first silly ' + emoji.random()); } } }; \ No newline at end of file -- cgit v1.2.3