fix support

This commit is contained in:
Lukáš Horáček 2020-04-09 09:05:44 +02:00
parent cba41dfab4
commit 33821715f2
No known key found for this signature in database
GPG Key ID: E07D6630DBC17195
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@ exports.conf = {
exports.help = {
name: 'support',
category: 'Utility',
description: "Sends a link to " + client.config.botName + "'s support/development server.",
description: "Sends a link to my support/development server.",
usage: 'support'
};
exports.run = async (client, message, args) =>{
exports.run = async (client, message, args, level, data) =>{
message.channel.send('Use this link to join my support server: https://discord.gg/' + client.config.support.id);
};