all repos — simple-discord-music-bot @ 7bceff48000d0f7b54cf9d779ec1ea4c931289c5

A Discord bot making use of discord.js and play-yt.

src/commands/skip.ts (view raw)

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