eximiabots-radiox/commands/bug.js
2020-03-09 13:17:47 +02:00

16 lines
600 B
JavaScript

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:`)
.setColor(client.config.embedColor)
.setDescription(`${client.developers}\nOr join the support server: ${client.config.supportGuild}`)
.setFooter('EximiaBots by Warén Media');
msg.channel.send(embed);
},
};