aboutsummaryrefslogtreecommitdiff
path: root/Utilities/Voting.js
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/Voting.js')
-rw-r--r--Utilities/Voting.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/Voting.js b/Utilities/Voting.js
index 0d986b8..452dc55 100644
--- a/Utilities/Voting.js
+++ b/Utilities/Voting.js
@@ -82,7 +82,7 @@ export async function voteSkip(interaction, bot) {
await interaction.reply({ content: t('votesNeeded', { votesRequired: votesRequired - 1 }) });
}
} else if (playerStatus === 2) {
- return await interaction.reply({ content: t('cannotPlay'), ephemeral: true });
+ return await interaction.reply({ content: t('playerStopped'), ephemeral: true });
}
}
@@ -94,7 +94,7 @@ export async function voteSkip(interaction, bot) {
// Do something to skip the audio track here (e.g. player.stop())
await commandCheck(interaction, bot);
} else if (playerStatus === 2) {
- return await interaction.reply({ content: t('cannotPlay'), ephemeral: true });
+ return await interaction.reply({ content: t('playerStopped'), ephemeral: true });
}
}
}