diff options
| author | 8cy <[email protected]> | 2020-04-10 11:47:50 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-10 11:47:50 -0700 |
| commit | b89247135684b52e3a23266327e7bea35f4b2592 (patch) | |
| tree | f56910aff48789a458f8d68092ea75fe553bfc14 /commands/voice | |
| parent | cool update :D, v2.0.2 (diff) | |
| download | s5nical-b89247135684b52e3a23266327e7bea35f4b2592.tar.xz s5nical-b89247135684b52e3a23266327e7bea35f4b2592.zip | |
spaces between emoji, v2.0.3
Diffstat (limited to 'commands/voice')
| -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 |
9 files changed, 17 insertions, 17 deletions
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 |