diff --git a/commands/filter.js b/commands/filter.js index 42e7143..8216c7c 100644 --- a/commands/filter.js +++ b/commands/filter.js @@ -29,12 +29,12 @@ exports.run = async (client, message, args) => { if(filtersUpdated[filterRealName]) { //The bot adds the filter on the music - message.channel.send(`I'm adding the filter to the music, please wait... Note : the longer the music is, the longer the wait will be ${emotes.music}`); + message.channel.send(`I'm adding the filter to the music, please wait... Note: the longer the music is, the longer this will take ${emotes.music}`); } else { //The bot removes the filter from the music - message.channel.send(`I'm disabling the filter on the music, please wait... Note : the longer the music is playing, the longer the wait will be ${emotes.music}`); + message.channel.send(`I'm disabling the filter on the music, please wait... Note: the longer the music is playing, the longer this will take ${emotes.music}`); } diff --git a/commands/help.js b/commands/help.js index 91f5b9f..a850d5e 100644 --- a/commands/help.js +++ b/commands/help.js @@ -6,11 +6,11 @@ exports.run = async (client, message, args) => { //New embed const help = new Discord.MessageEmbed() - .setDescription("Find the list of commands available on this panel.") + .setDescription("Find the list of available commands on this panel.") .addField("**Music - (11)**", "`play`, `pause`, `resume`, `queue`, `clear-queue`, `shuffle`, `np`, `loop`, `volume`, `skip`, `stop`") .addField("**Filters - (18)**", "`bassboost`, `8D`, `vaporwave`, `nightcore`, `phaser`, `tremolo`, `vibrato`, `reverse`, `treble`, `normalizer`, `surrounding`, `pulsator`, `subboost`, `karaoke`, `flanger`, `gate`, `haas`, `mcompand`") .addField("**Informations - (1)**", "`ping`") - .setFooter(`To use filters, ${config.prefix}filter (the filter). Example : ${config.prefix}filter 8D.`) + .setFooter(`To use filters, ${config.prefix}filter (the filter). Example: ${config.prefix}filter 8D.`) .setColor("ORANGE") //Message diff --git a/commands/np.js b/commands/np.js index 46faf2f..2630c8f 100644 --- a/commands/np.js +++ b/commands/np.js @@ -12,6 +12,6 @@ exports.run = async (client, message, args) => { const song = await client.player.nowPlaying(message.guild.id); //Message - message.channel.send(`Currently playing ${song.name} ${emotes.music}\nProgression : [${client.player.createProgressBar(message.guild.id)}]`); + message.channel.send(`Currently playing ${song.name} ${emotes.music}\nProgress: [${client.player.createProgressBar(message.guild.id)}]`); } diff --git a/commands/ping.js b/commands/ping.js index 461174d..648eeef 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -4,6 +4,6 @@ const Discord = require("discord.js") exports.run = async (client, message, args) => { //Message - message.channel.send(`Ping : ${client.ws.ping} ms ${emotes.success}`) + message.channel.send(`Ping: ${client.ws.ping} ms ${emotes.success}`) } diff --git a/commands/play.js b/commands/play.js index 18315f0..a8d947d 100644 --- a/commands/play.js +++ b/commands/play.js @@ -7,7 +7,7 @@ exports.run = async (client, message, args) => { if(!message.member.voice.channel) return message.channel.send(`You're not in a voice channel ${emotes.error}`); //If no music is provided - if (!args[0]) return message.channel.send(`Please enter a music ${emotes.error}`); + if (!args[0]) return message.channel.send(`Please specify a song to play ${emotes.error}`); const aTrackIsAlreadyPlaying = client.player.isPlaying(message.guild.id); @@ -18,7 +18,7 @@ exports.run = async (client, message, args) => { const result = await client.player.addToQueue(message.guild.id, args.join(" ")).catch(() => {}); if(!result) { message.member.voice.channel.leave() - return message.channel.send(`This song provider is not supported...`) + return message.channel.send(`This song provider is not supported.`) }; if(result.type === 'playlist'){ @@ -33,11 +33,11 @@ exports.run = async (client, message, args) => { const result = await client.player.play(message.member.voice.channel, args.join(" ")).catch(() => {}); if(!result) { message.member.voice.channel.leave() - return message.channel.send(`This song provider is not supported...`) + return message.channel.send(`This song provider is not supported.`) }; if(result.type === 'playlist'){ - message.channel.send(`${result.tracks.length} songs added to the queue ${emotes.music}\nCurrently playing ${result.tracks[0].name} !`); + message.channel.send(`${result.tracks.length} songs added to the queue ${emotes.music}\nCurrently playing ${result.tracks[0].name}`); } else { message.channel.send(`Currently playing ${result.name} ${emotes.music}`); } @@ -52,7 +52,7 @@ exports.run = async (client, message, args) => { message.channel.send(`Now playing ${newTrack.name} ... ${emotes.music}`); }) .on('channelEmpty', () => { - message.channel.send(`Stop playing, there is no more member in the voice channel ${emotes.error}`); + message.channel.send(`Music stoppted, there are no more members in the voice channel ${emotes.error}`); }); } } diff --git a/commands/w-filters.js b/commands/w-filters.js index d2b6cd1..e9bd08b 100644 --- a/commands/w-filters.js +++ b/commands/w-filters.js @@ -24,7 +24,7 @@ exports.run = async (client, message, args) => { //List embed const list = new Discord.MessageEmbed() - .setDescription(`List of all filters enabled or disabled.\nTo add a filter to a \`${config.prefix}filter\` music.`) + .setDescription(`List of all filters enabled or disabled.\nUse \`${config.prefix}filter\` to add a filter to a song.`) .addField("**Filters**", filtersStatuses[0].join('\n'), true) .addField("** **", filtersStatuses[1].join('\n'), true) .setColor("ORANGE");