mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 03:40:19 +00:00
Updated stop.js
This commit is contained in:
parent
1358787793
commit
5f5b164e0d
@ -5,15 +5,37 @@ module.exports = {
|
||||
usage: '',
|
||||
permission: 'none',
|
||||
category: 'radio',
|
||||
execute(interaction, client, Discord, command) {
|
||||
async execute(interaction, client, Discord, command) {
|
||||
const radio = client.radio.get(interaction.guild.id);
|
||||
if (client.funcs.check(client, interaction, command)) {
|
||||
client.funcs.statisticsUpdate(client, interaction.guild, radio);
|
||||
radio.connection?.destroy();
|
||||
radio.audioPlayer?.stop();
|
||||
client.funcs.logger('Radio', 'Stream stopped' + " / " + interaction.guild.id);
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(client.user.username)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["stop"].replace(/[^0-9]+/g, ''))
|
||||
.setColor(client.config.embedColor)
|
||||
.addField(client.messages.nowplayingTitle, "Nothing", true)
|
||||
.setFooter(client.messages.footerText, "https://cdn.discordapp.com/emojis/" + client.messageEmojis["eximiabots"].replace(/[^0-9]+/g, ''));
|
||||
|
||||
if(!radio.message){
|
||||
radio.message = await radio.textChannel.send({ embeds: [embed] });
|
||||
} else {
|
||||
radio.message.edit({ embeds: [embed] });
|
||||
}
|
||||
|
||||
setTimeout(function() {
|
||||
radio.message.delete();
|
||||
}, 5000);
|
||||
|
||||
client.radio.delete(interaction.guild.id);
|
||||
interaction.reply(client.messageEmojis["stop"] + client.messages.stop);
|
||||
|
||||
interaction.reply({
|
||||
content: client.messageEmojis["stop"] + client.messages.stop,
|
||||
ephemeral: true
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user