aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--commands/next.js2
-rw-r--r--commands/previous.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index d2a5172..49f9b49 100644
--- a/README.md
+++ b/README.md
@@ -45,8 +45,8 @@ join - Joins voice chat.
play - Resumes music.
play (int) - Input a number for the selection for the audio file.
pause - Pauses music.
-next - Goes to next track.
-previous - Goes to previous track.
+next - Goes to next music.
+previous - Goes to previous music.
reshuffle - Reshuffles the playlist
leave - Leaves voice chat.
shutdown - Powers off the bot.
diff --git a/commands/next.js b/commands/next.js
index 589389c..2402fa2 100644
--- a/commands/next.js
+++ b/commands/next.js
@@ -26,7 +26,7 @@ import { PermissionFlagsBits } from 'discord-api-types/v10';
export default {
data: new SlashCommandBuilder()
.setName('next')
- .setDescription('Goes to next track')
+ .setDescription('Goes to next music')
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator),
async execute(interaction, bot) {
await interaction.reply({ content: 'Playing next music', ephemeral: true });
diff --git a/commands/previous.js b/commands/previous.js
index ed3be07..7d96ec7 100644
--- a/commands/previous.js
+++ b/commands/previous.js
@@ -26,7 +26,7 @@ import { PermissionFlagsBits } from 'discord-api-types/v10';
export default {
data: new SlashCommandBuilder()
.setName('previous')
- .setDescription('Goes to previous track')
+ .setDescription('Goes to previous music')
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator),
async execute(interaction, bot) {
return await previousAudio(bot, interaction);