src/commands/skip.ts (view raw)
1import { SlashCommandBuilder } from 'discord.js';
2import { getChannel, skipMusic } from '../functions/music';
3
4module.exports = {
5 data: new SlashCommandBuilder()
6 .setName('skip')
7 .setDescription('Skip current track.'),
8
9 async execute(interaction) {
10 const channel = await getChannel(interaction);
11 if (typeof channel == 'string')
12 return await interaction.reply({ content: channel, ephemeral: true });
13
14 const result = await skipMusic();
15 return await interaction.reply({ content: 'Skipped.' });
16 //return await interaction.reply({ content: 'Error: couldn\'t skip.', ephemeral: true });
17 },
18};