aboutsummaryrefslogtreecommitdiff
path: root/commands/pause.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/pause.js')
-rw-r--r--commands/pause.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/pause.js b/commands/pause.js
index d5d8edc..c467675 100644
--- a/commands/pause.js
+++ b/commands/pause.js
@@ -29,6 +29,7 @@ export default {
.setDescription('Pauses music')
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator),
async execute(interaction) {
+ 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 (isAudioStatePaused === false) {
toggleAudioState();
return await interaction.reply({ content: 'Pausing music', ephemeral: true });