readd support command

This commit is contained in:
Lukáš Horáček 2020-04-08 21:48:53 +02:00
parent ae0240ef47
commit 46b81f9c60
No known key found for this signature in database
GPG Key ID: E07D6630DBC17195
1 changed files with 18 additions and 0 deletions

18
commands/support.js Normal file
View File

@ -0,0 +1,18 @@
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 'User',
requiredPerms: []
};
exports.help = {
name: 'support',
category: 'Utility',
description: "Sends a link to " + client.config.botName + "'s support/development server.",
usage: 'support'
};
exports.run = async (client, message, args) =>{
message.channel.send('Use this link to join my support server: https://discord.gg/' + client.config.support.id);
};