2020-03-02 19:38:42 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'bug',
|
|
|
|
alias: 'none',
|
|
|
|
usage: '',
|
|
|
|
description: 'Report a bug',
|
|
|
|
permission: 'none',
|
|
|
|
category: 'info',
|
|
|
|
async execute(msg, args, client, Discord, prefix) {
|
|
|
|
const embed = new Discord.MessageEmbed()
|
|
|
|
.setTitle(`Found a bug with ${client.user.username}?\nDM the core developer:`)
|
2020-03-08 23:26:24 +00:00
|
|
|
.setColor(client.config.embedColor)
|
2020-03-09 11:17:47 +00:00
|
|
|
.setDescription(`${client.developers}\nOr join the support server: ${client.config.supportGuild}`)
|
2020-03-08 23:26:24 +00:00
|
|
|
.setFooter('EximiaBots by Warén Media');
|
2020-03-02 19:38:42 +00:00
|
|
|
msg.channel.send(embed);
|
|
|
|
},
|
2020-03-08 14:22:00 +00:00
|
|
|
};
|