mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 02:00:20 +00:00
13 lines
479 B
JavaScript
13 lines
479 B
JavaScript
module.exports = {
|
|
name: 'bug',
|
|
description: 'Report a bug',
|
|
alias: 'bug',
|
|
cooldown: 5,
|
|
async execute(message, args, client, Discord, prefix) {
|
|
const embed = new Discord.RichEmbed()
|
|
.setTitle(`Found a bug with ${client.user.username}?\nDM the core developer:`)
|
|
.setDescription(`Matte#0002\nOr join the support server: https://discord.gg/rvHuJtB`)
|
|
.setColor('#b50002');
|
|
message.channel.send(embed);
|
|
},
|
|
}; |