diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-05-22 20:36:26 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-05-22 20:36:26 -0400 |
| commit | fc76d7c73ae9ffec6be86fc7d9d9e8c9a14605ab (patch) | |
| tree | 0f4930fd8655e550c974bc404b93149cf7eab4ac /commands/invite.js | |
| parent | bbb982243b6564e526fb581f55946704cdf256a3 (diff) | |
| download | AleeBot-fc76d7c73ae9ffec6be86fc7d9d9e8c9a14605ab.tar.gz AleeBot-fc76d7c73ae9ffec6be86fc7d9d9e8c9a14605ab.tar.bz2 AleeBot-fc76d7c73ae9ffec6be86fc7d9d9e8c9a14605ab.zip | |
Added more ALP exclusive logs & cleaning up code
Diffstat (limited to 'commands/invite.js')
| -rw-r--r-- | commands/invite.js | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/commands/invite.js b/commands/invite.js index 38094b4..a6ce5a8 100644 --- a/commands/invite.js +++ b/commands/invite.js @@ -1,5 +1,5 @@ -/**************************************** - * +/** ************************************** + * * Invite: Command for AleeBot * Copyright (C) 2017-2020 Alee Productions * @@ -15,37 +15,37 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. - * + * * *************************************/ module.exports.run = async (client, message) => { - const Discord = require('discord.js'); - const embed = new Discord.RichEmbed() - message.channel.send({embed: { + const Discord = require('discord.js'); + const embed = new Discord.RichEmbed(); + message.channel.send({embed: { color: 2086425, - title: "Invite Command", + title: 'Invite Command', fields: [{ - name: "Invite AleeBot", - value: "[Invite AleeBot to your server.](https://top.gg/bot/282547024547545109)" - }, - { - name: "Join the Alee Productions Community", - value: "[If there's any bugs you can join Alee Community guild and explain the bug...](https://discord.gg/EFhRDqG)" - } + name: 'Invite AleeBot', + value: '[Invite AleeBot to your server.](https://top.gg/bot/282547024547545109)', + }, + { + name: 'Join the Alee Productions Community', + value: '[If there\'s any bugs you can join Alee Community guild and explain the bug...](https://discord.gg/EFhRDqG)', + }, ], - } -}); - - // message.channel.send('Want AleeBot in your server? Here\'s the link: https://discordapp.com/api/oauth2/authorize?client_id=282547024547545109&permissions=2080375863&scope=bot'); - }; - - exports.conf = { - aliases: [], - guildOnly: false, - }; - exports.help = { - name: 'invite', - description: 'Gives you an invite to the guild and the bot.', - usage: 'invite', - category: '- General Commands', - }; - + }, + }); + + // message.channel.send('Want AleeBot in your server? Here\'s the link: https://discordapp.com/api/oauth2/authorize?client_id=282547024547545109&permissions=2080375863&scope=bot'); +}; + +exports.conf = { + aliases: [], + guildOnly: false, +}; +exports.help = { + name: 'invite', + description: 'Gives you an invite to the guild and the bot.', + usage: 'invite', + category: '- General Commands', +}; + |
