diff options
| -rw-r--r-- | commands/fun/quote.js | 8 | ||||
| -rw-r--r-- | commands/utility/clear.js | 2 | ||||
| -rw-r--r-- | commands/utility/membercount.js | 2 | ||||
| -rw-r--r-- | commands/utility/reboot.js | 6 | ||||
| -rw-r--r-- | commands/utility/uptime.js | 2 | ||||
| -rw-r--r-- | commands/voice/fart.js | 16 | ||||
| -rw-r--r-- | commands/voice/itemshop.js | 2 | ||||
| -rw-r--r-- | commands/voice/join.js | 2 | ||||
| -rw-r--r-- | commands/voice/loop.js | 2 | ||||
| -rw-r--r-- | commands/voice/play.js | 4 | ||||
| -rw-r--r-- | commands/voice/queue.js | 2 | ||||
| -rw-r--r-- | commands/voice/remove.js | 2 | ||||
| -rw-r--r-- | commands/voice/shuffle.js | 2 | ||||
| -rw-r--r-- | commands/voice/volume.js | 2 |
14 files changed, 27 insertions, 27 deletions
diff --git a/commands/fun/quote.js b/commands/fun/quote.js index cde9e90..6ad0f89 100644 --- a/commands/fun/quote.js +++ b/commands/fun/quote.js @@ -18,13 +18,13 @@ module.exports = class QuoteFun extends Command { } run(msg, args) { if (!args.length) { - msg.reply(atquotes.getQuote()); + msg.reply(atquotes.getQuote() + ' ' + emoji.random()); } else if (args[0] == 'finn') { - msg.reply(atquotes.getFinnQuote() + emoji.random()); + msg.reply(atquotes.getFinnQuote() + ' ' + emoji.random()); } else if (args[0] == 'jake') { - msg.reply(atquotes.getJakeQuote() + emoji.random()); + msg.reply(atquotes.getJakeQuote() + ' ' + emoji.random()); } else if (args[0] == 'ice-king') { - msg.reply(atquotes.getIceKingQuote() + emoji.random()); + msg.reply(atquotes.getIceKingQuote() + ' ' + emoji.random()); } } };
\ No newline at end of file diff --git a/commands/utility/clear.js b/commands/utility/clear.js index 204581f..0abcdac 100644 --- a/commands/utility/clear.js +++ b/commands/utility/clear.js @@ -52,7 +52,7 @@ module.exports = class ClearUtility extends Command { }).then(messages => { // I am on v11 discord.js msg.channel.bulkDelete(messages); }); - msg.reply('it\'s been deleted ~uwu' + emoji.random()).then(deleteNotificationMessage => { + msg.reply('it\'s been deleted ~uwu ' + emoji.random()).then(deleteNotificationMessage => { deleteNotificationMessage.delete({ timeout: 1000 }); }); } diff --git a/commands/utility/membercount.js b/commands/utility/membercount.js index 9690296..51b4067 100644 --- a/commands/utility/membercount.js +++ b/commands/utility/membercount.js @@ -17,6 +17,6 @@ module.exports = class MemberCountUtility extends Command { }); } run(msg) { - msg.reply(`there are **${msg.guild.memberCount}** members in **${msg.guild.name}**` + emoji.random()); + msg.reply(`there are **${msg.guild.memberCount}** members in **${msg.guild.name}** ` + emoji.random()); } };
\ No newline at end of file diff --git a/commands/utility/reboot.js b/commands/utility/reboot.js index 931f0db..2e104f6 100644 --- a/commands/utility/reboot.js +++ b/commands/utility/reboot.js @@ -26,14 +26,14 @@ module.exports = class RebootUtility extends Command { } else if (!msg.guild.voice) { msg.member.voice.channel.join(); msg.member.voice.channel.leave(); - msg.reply('voice module reboot finished lol' + emoji.random()); + msg.reply('voice module reboot finished lol ' + emoji.random()); } else if (msg.guild.voice) { msg.member.voice.channel.leave(); msg.member.voice.channel.join(); - msg.reply('voice module reboot finished lol' + emoji.random()); + msg.reply('voice module reboot finished lol ' + emoji.random()); } } else if (module == 'commands' || module == 'commands' || module == 'cmds' || module == 'cmd' || module == 'c') { - msg.reply('commands module reboot finished lol' + emoji.random()); + msg.reply('commands module reboot finished lol ' + emoji.random()); } else if (!args.length) { msg.reply('no module(s) specified'); } diff --git a/commands/utility/uptime.js b/commands/utility/uptime.js index 4643295..93be578 100644 --- a/commands/utility/uptime.js +++ b/commands/utility/uptime.js @@ -20,6 +20,6 @@ module.exports = class UptimeUtility extends Command { } run(msg) { const duration = upTime.duration(this.client.uptime).format(" D [days], H [hrs], m [mins], s [secs]"); - msg.reply(duration + emoji.random()); + msg.reply(duration + ' ' + emoji.random()); } };
\ No newline at end of file diff --git a/commands/voice/fart.js b/commands/voice/fart.js index 1a35732..f87ad84 100644 --- a/commands/voice/fart.js +++ b/commands/voice/fart.js @@ -17,49 +17,49 @@ module.exports = class FartVoice extends Command { var fartNum = Math.floor((Math.random() * 8) + 1); if (fartNum == 1) { - msg.reply('you got fart 1, courtesy of Sin' + emoji.random()); + msg.reply('you got fart 1, courtesy of Sin ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/1.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 2) { - msg.reply('you got fart 2, courtesy of Sin' + emoji.random()); + msg.reply('you got fart 2, courtesy of Sin ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/2.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 3) { - msg.reply('you got fart 3, courtesy of Sin' + emoji.random()); + msg.reply('you got fart 3, courtesy of Sin ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/3.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 4) { - msg.reply('you got fart 4, courtesy of Sin' + emoji.random()); + msg.reply('you got fart 4, courtesy of Sin ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/4.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 5) { - msg.reply('you got fart 5, courtesy of Sin' + emoji.random()); + msg.reply('you got fart 5, courtesy of Sin ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/5.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 6) { - msg.reply('you got fart 6, courtesy of nick' + emoji.random()); + msg.reply('you got fart 6, courtesy of nick ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/6.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 7) { - msg.reply('you got fart 7, courtesy of nick' + emoji.random()); + msg.reply('you got fart 7, courtesy of nick ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/7.mp3'); dispatcher.on('finish', () => { connection.disconnect(); }); } else if (fartNum == 8) { - msg.reply('you got fart 8, courtesy of nick' + emoji.random()); + msg.reply('you got fart 8, courtesy of nick ' + emoji.random()); const dispatcher = connection.play('./assets/audio/farts/8.mp3'); dispatcher.on('finish', () => { connection.disconnect(); diff --git a/commands/voice/itemshop.js b/commands/voice/itemshop.js index 3c91f2a..c7b4825 100644 --- a/commands/voice/itemshop.js +++ b/commands/voice/itemshop.js @@ -20,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!!!' + emoji.random()); + msg.reply('USE CODE FROZEN IN THE FORTNITE ITEM SHOP!!! ' + emoji.random()); function timeCheck() { if (dispatcher.streamTime >= 6000) { diff --git a/commands/voice/join.js b/commands/voice/join.js index 52528be..fa742c3 100644 --- a/commands/voice/join.js +++ b/commands/voice/join.js @@ -19,7 +19,7 @@ module.exports = class JoinVoice extends Command { run(msg) { if (!msg.guild.voice && msg.member.voice.channel) { msg.member.voice.channel.join(); - msg.reply('succesfully joined voice channel' + emoji.random()); + msg.reply('succesfully joined voice channel ' + emoji.random()); } else if (msg.guild.voice) { msg.reply('i\'m already in voice channel'); } else if (!msg.member.voice.channel) { diff --git a/commands/voice/loop.js b/commands/voice/loop.js index 0dc50df..967130c 100644 --- a/commands/voice/loop.js +++ b/commands/voice/loop.js @@ -22,7 +22,7 @@ module.exports = class LoopVoice extends Command { return msg.reply('there isn\'t a song playing right now lol'); } msg.channel.send( - `${msg.guild.musicData.nowPlaying.title} added to queue` + emoji.random() + `${msg.guild.musicData.nowPlaying.title} added to queue ` + emoji.random() ); msg.guild.musicData.queue.unshift(msg.guild.musicData.nowPlaying); return; diff --git a/commands/voice/play.js b/commands/voice/play.js index 4248a48..8cbd9cd 100644 --- a/commands/voice/play.js +++ b/commands/voice/play.js @@ -68,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` + emoji.random() + `playlist - :musical_note: ${playlist.title} :musical_note: has been added to queue ` + emoji.random() ); } } @@ -130,7 +130,7 @@ module.exports = class PlayVoice extends Command { vidNameArr.push('exit'); const embed = new MessageEmbed() .setColor(0xF97DAE) - .setTitle('choose a song by msging a number between 1 and 5') + .setTitle('choose a song by msging a number between 1 and 5 ' + emoji.random()) .addField('song #1', vidNameArr[0]) .addField('song #2', vidNameArr[1]) .addField('song #3', vidNameArr[2]) diff --git a/commands/voice/queue.js b/commands/voice/queue.js index 47cf34f..349380d 100644 --- a/commands/voice/queue.js +++ b/commands/voice/queue.js @@ -22,7 +22,7 @@ module.exports = class QueueVoice extends Command { }); let queueEmbed = new MessageEmbed() .setColor(0xF97DAE) - .setTitle('music queue' + emoji.random()); + .setTitle('music queue ' + emoji.random()); for (let i = 0; i < titleArray.length; i++) { queueEmbed.addField(`${i + 1}:`, `${titleArray[i]}`); } diff --git a/commands/voice/remove.js b/commands/voice/remove.js index 6020b2a..e8a527c 100644 --- a/commands/voice/remove.js +++ b/commands/voice/remove.js @@ -34,6 +34,6 @@ module.exports = class RemoveVoice extends Command { } msg.guild.musicData.queue.splice(songNumber - 1, 1); - return msg.say(`removed song #${songNumber} from queue` + emoji.random()); + return msg.say(`removed song #${songNumber} from queue ` + emoji.random()); } };
\ No newline at end of file diff --git a/commands/voice/shuffle.js b/commands/voice/shuffle.js index 5f14b6e..2cf9fe2 100644 --- a/commands/voice/shuffle.js +++ b/commands/voice/shuffle.js @@ -34,7 +34,7 @@ module.exports = class ShuffleVoice extends Command { }); var queueEmbed = new MessageEmbed() .setColor(0xF97DAE) - .setTitle('new music q' + emoji.random()); + .setTitle('new music q ' + emoji.random()); for (let i = 0; i < titleArray.length; i++) { queueEmbed.addField(`${i + 1}:`, `${titleArray[i]}`); } diff --git a/commands/voice/volume.js b/commands/voice/volume.js index cdcd478..3a6f8bf 100644 --- a/commands/voice/volume.js +++ b/commands/voice/volume.js @@ -34,6 +34,6 @@ module.exports = class VolumeVoice extends Command { const volume = wantedVol / 100; msg.guild.musicData.volume = volume; msg.guild.musicData.songDispatcher.setVolume(volume); - msg.reply(`volume is now: ${wantedVol}%` + emoji.random()); + msg.reply(`volume is now: ${wantedVol}% ` + emoji.random()); } };
\ No newline at end of file |