1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 10:51:56 +00:00
musix-oss/struct/funcs/exe.js

20 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-02-05 20:02:53 +00:00
module.exports = function (msg, args, client, Discord, prefix, command) {
const permissions = msg.channel.permissionsFor(msg.client.user);
if (!permissions.has('EMBED_LINKS')) return msg.channel.send('<:redx:674263474704220182> I cannot send embeds (Embed links), make sure I have the proper permissions!');
2020-03-11 15:37:47 +00:00
if (!permissions.has('USE_EXTERNAL_EMOJIS')) return msg.channel.send('<:redx:674263474704220182> I cannot use external emojis, make sure I have the proper permissions!');
2020-02-05 20:02:53 +00:00
try {
command.uses++;
command.execute(msg, args, client, Discord, prefix, command);
} catch (error) {
2020-03-11 15:49:31 +00:00
const date = new Date();
2020-02-05 20:02:53 +00:00
msg.reply(`<:redx:674263474704220182> there was an error trying to execute that command! Please contact support with \`${prefix}bug\`!`);
const embed = new Discord.MessageEmbed()
.setTitle(`Musix ${error.toString()}`)
.setDescription(error.stack.replace(/at /g, '**at **'))
2020-03-11 15:49:31 +00:00
.setFooter(`guild: ${msg.guild.id}, user: ${msg.member.id}, channel: ${msg.channel.id}, date: ${date}`)
2020-02-05 20:02:53 +00:00
.setColor('#b50002');
2020-03-03 20:24:41 +00:00
client.debug_channel.send(embed);
2020-02-19 19:58:32 +00:00
console.error(error);
2020-02-05 20:02:53 +00:00
}
};