2019-08-14 12:26:33 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'bug',
|
|
|
|
description: 'Report a bug',
|
|
|
|
cooldown: 5,
|
2019-10-10 13:43:04 +00:00
|
|
|
async execute(message, args, client, Discord, prefix) {
|
|
|
|
const embed = new Discord.RichEmbed()
|
2019-08-14 12:26:33 +00:00
|
|
|
.setTitle(`Found a bug with ${client.user.username}?\nDM the core developer:`)
|
2019-10-10 13:43:04 +00:00
|
|
|
.setDescription(`Matte#0002\nOr join the support server: https://discord.gg/rvHuJtB`)
|
2019-08-14 12:26:33 +00:00
|
|
|
.setColor('#b50002');
|
2019-10-10 13:43:04 +00:00
|
|
|
message.channel.send(embed);
|
2019-08-14 12:26:33 +00:00
|
|
|
},
|
|
|
|
};
|