From 46b81f9c605f9915bdc05235ac1ce180dbd0aa32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hor=C3=A1=C4=8Dek?= Date: Wed, 8 Apr 2020 21:48:53 +0200 Subject: [PATCH] readd support command --- commands/support.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 commands/support.js diff --git a/commands/support.js b/commands/support.js new file mode 100644 index 0000000..7042430 --- /dev/null +++ b/commands/support.js @@ -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); +}; \ No newline at end of file