eximiabots-radiox/commands/bug.js
Christer Warén bd5563556b
Update bug.js
2020-03-02 22:01:26 +02:00

17 lines
558 B
JavaScript

module.exports = {
name: 'bug',
alias: 'none',
usage: '',
description: 'Report a bug',
onlyDev: false,
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:`)
.setDescription(`Matte#0002\nOr join the support server: ${client.config.supportguild}`)
.setColor(client.config.embedColor);
msg.channel.send(embed);
},
};