1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-01-08 07:34:49 +00:00
musix-oss/src/commands/invite.js

18 lines
467 B
JavaScript
Raw Normal View History

2024-02-10 07:33:59 +00:00
const { EmbedBuilder } = require("discord.js");
2020-02-05 20:02:53 +00:00
module.exports = {
name: 'invite',
2020-05-15 16:05:39 +00:00
alias: ["i"],
2020-02-24 18:41:40 +00:00
usage: '',
2020-02-05 20:02:53 +00:00
description: 'Invite Musix.',
permission: 'none',
category: 'info',
2024-02-10 07:33:59 +00:00
execute(msg, args, client, command) {
const embed = new EmbedBuilder()
.setTitle(client.messages.inviteTitle)
2020-02-05 20:02:53 +00:00
.setURL(client.config.invite)
.setColor(client.config.embedColor)
2020-03-21 17:49:25 +00:00
msg.channel.send(embed);
2020-02-05 20:02:53 +00:00
}
2024-02-10 07:33:59 +00:00
};