remove subcommands - make it easy

This commit is contained in:
Nico Jensen 2022-01-24 15:23:32 +01:00
parent 83b370c1c4
commit 776280769c

View File

@ -4,13 +4,8 @@ const {MessageEmbed, Guild} = require('discord.js')
module.exports = {
data: new SlashCommandBuilder()
.setName('vc')
.setDescription('create new voice channel')
.addSubcommand(subCcommand => subCcommand.setName('Create').setDescription('Create new Voice Channel'))
.addSubcommand(subCcommand => subCcommand.setName('Rename').setDescription('Rename Voice Channel'))
.addSubcommand(subCcommand => subCcommand.setName('Delete').setDescription('Delete Voice Channel')),
.setDescription('create new voice channel.'),
async execute(interaction) {
switch(interaction.options.getSubcommand()) {
case 'Create': {
const newChannelName = `${interaction.member.displayName}'s Channel`
interaction.guild.channels.create(`${newChannelName}`, {
type: 'GUILD_VOICE',
@ -20,20 +15,6 @@ module.exports = {
allow: ['MANAGE_CHANNELS']
}]
})
await Tags.create({
name: interaction.guild.channels.getId(`${newChannelName}`),
description: 'channelID',
username: interaction.user.username,
})
break
}
case 'Rename': {
break
}
case 'Delete': {
break
}
}
interaction.reply("Your channel is created.\nYou have all the rights to modify the channel.\nThe channel is automatically deleted after the last user has left it.")
}
}