From 03fb793b6ca19211159877018bcad53743f0efd7 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Thu, 8 Feb 2024 18:43:01 +0100 Subject: [PATCH] only use voice channels --- commands/admin/custom_vc/slash.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/admin/custom_vc/slash.js b/commands/admin/custom_vc/slash.js index 24df19c..e3255d0 100644 --- a/commands/admin/custom_vc/slash.js +++ b/commands/admin/custom_vc/slash.js @@ -24,6 +24,7 @@ export const data = new SlashCommandBuilder() option .setRequired(true) .setName('channel') + .addChannelTypes(ChannelType.GuildVoice) .setDescription('The voice channel to be used.') ) );