1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/commands/bug.js

12 lines
461 B
JavaScript
Raw Normal View History

module.exports = {
name: 'bug',
description: 'Report a bug',
cooldown: 5,
2019-10-10 13:43:04 +00:00
async execute(message, args, client, Discord, prefix) {
const embed = new Discord.RichEmbed()
.setTitle(`Found a bug with ${client.user.username}?\nDM the core developer:`)
2019-10-10 13:43:04 +00:00
.setDescription(`Matte#0002\nOr join the support server: https://discord.gg/rvHuJtB`)
.setColor('#b50002');
2019-10-10 13:43:04 +00:00
message.channel.send(embed);
},
};