eximiabots-radiox/commands/bug.js

17 lines
558 B
JavaScript
Raw Normal View History

2020-03-02 19:38:42 +00:00
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:`)
2020-03-02 20:01:26 +00:00
.setDescription(`Matte#0002\nOr join the support server: ${client.config.supportguild}`)
2020-03-02 19:38:42 +00:00
.setColor(client.config.embedColor);
msg.channel.send(embed);
},
2020-03-02 20:00:10 +00:00
};