aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Commands/status.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Commands/status.js b/Commands/status.js
index ee02126..c11105c 100644
--- a/Commands/status.js
+++ b/Commands/status.js
@@ -32,7 +32,7 @@ export default {
.setName('status')
.setDescription('Checks what audio file is playing currently'),
async execute(interaction, bot) {
- if (!interaction.member.voice.channel) return await interaction.reply({ content: 'You need to be in a voice channel to use this command.', ephemeral: true });
+ if (!interaction.member.voice.channel) return await interaction.reply({ content: t('voicePermission'), ephemeral: true });
let audioID = currentTrack;
audioID++;