aboutsummaryrefslogtreecommitdiff
path: root/commands/status.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-12-02 00:31:17 -0500
committerAndrew Lee <alee14498@protonmail.com>2022-12-02 00:40:10 -0500
commite0fe64b06c0eb8b92578ae1bf5a166f8d633c9b3 (patch)
treeaf930df72f7bfeb2a3ca7c11321f894b02ad7411 /commands/status.js
parentebdf6e92b146d1bad3b0e295e926f9e43e26c532 (diff)
downloadDLAP-e0fe64b06c0eb8b92578ae1bf5a166f8d633c9b3.tar.gz
DLAP-e0fe64b06c0eb8b92578ae1bf5a166f8d633c9b3.tar.bz2
DLAP-e0fe64b06c0eb8b92578ae1bf5a166f8d633c9b3.zip
Fixed duration date; More stop functions; Required in voice channel
Diffstat (limited to 'commands/status.js')
-rw-r--r--commands/status.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/status.js b/commands/status.js
index 3143e16..cf49509 100644
--- a/commands/status.js
+++ b/commands/status.js
@@ -29,6 +29,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 });
let audioID = currentTrack;
audioID++;