mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 03:00:18 +00:00
16 lines
554 B
JavaScript
16 lines
554 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: https://discord.gg/rvHuJtB`)
|
||
|
.setColor(client.config.embedColor);
|
||
|
msg.channel.send(embed);
|
||
|
},
|
||
|
};
|