all repos — simple-discord-music-bot @ f5ac8b7e1de04b34091806153194cabdf9c24c6e

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

commands/stop.js (view raw)

 1const { SlashCommandBuilder } = require('discord.js');
 2const { getChannel } = require('../functions/music');
 3
 4module.exports = {
 5    data: new SlashCommandBuilder()
 6        .setName('stop')
 7        .setDescription('Stop the music.'),
 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        player.stop();
15        return await interaction.reply({ content: 'Stopped.', ephemeral: true });
16    },
17};