mrmBot-Matrix/commands/music/stop.js

22 lines
1.0 KiB
JavaScript

import { manager, players, queues } from "../../utils/soundplayer.js";
import MusicCommand from "../../classes/musicCommand.js";
class StopCommand extends MusicCommand {
async run() {
if (!this.message.channel.guild) return "This command only works in servers!";
if (!this.message.member.voiceState.channelID) return "You need to be in a voice channel first!";
if (!this.message.channel.guild.members.get(this.client.user.id).voiceState.channelID) return "I'm not in a voice channel!";
if (this.connection.host !== this.message.author.id) return "Only the current voice session host can stop the music!";
manager.leave(this.message.channel.guild.id);
const connection = this.connection.player;
connection.destroy();
players.delete(this.message.channel.guild.id);
queues.delete(this.message.channel.guild.id);
return "🔊 The current voice channel session has ended.";
}
static description = "Stops the music";
static aliases = ["disconnect"];
}
export default StopCommand;