aboutsummaryrefslogtreecommitdiff
path: root/commands/about.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-03-25 21:25:43 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-03-25 21:27:41 -0400
commit1a7a627446edfeb270850f0ed15c9c8d604380b2 (patch)
tree8435e5323ce8a81976cafe297a6c730b4f0695da /commands/about.js
parent85a8f11507c0fb74b67914090bdfe10c361b775e (diff)
downloadAleeBot-1a7a627446edfeb270850f0ed15c9c8d604380b2.tar.gz
AleeBot-1a7a627446edfeb270850f0ed15c9c8d604380b2.tar.bz2
AleeBot-1a7a627446edfeb270850f0ed15c9c8d604380b2.zip
Now using sequelize; Minor tweaks; New activities
Diffstat (limited to 'commands/about.js')
-rw-r--r--commands/about.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/commands/about.js b/commands/about.js
index 14daebb..be1c17d 100644
--- a/commands/about.js
+++ b/commands/about.js
@@ -20,12 +20,16 @@
module.exports.run = async (client, message) => {
const { MessageEmbed, MessageButton, MessageActionRow } = require('discord.js');
+ let Contributors = ('- Andrew Lee (Founder of this project)\n');
+ Contributors += ('- OfficialRain (Raina) (Uptime Command)\n');
+ Contributors += ('- jtsshieh (Command Handler)');
+
const aboutEmbed = new MessageEmbed()
.setAuthor(`AleeBot ${require('../storage/settings.json').abVersion}`, client.user.avatarURL())
.addField('About AleeBot', 'AleeBot is an all-in-one bot that\'s made from the Discord.JS API!')
.addField('License', 'GNU General Public License v3.0')
- .addField('Contributors', 'Andrew Lee (Founder of this project)\nOfficialRain (Raina) (Uptime Command)\njtsshieh (Command Handler)')
- .setFooter('© Copyright 2017-2022 Andrew Lee Projects')
+ .addField('Contributors', Contributors)
+ .setFooter('© Copyright 2017-2023 Andrew Lee Projects')
.setColor('#1fd619');
let inviteButton = new MessageActionRow()
@@ -36,7 +40,7 @@ module.exports.run = async (client, message) => {
.setURL('https://top.gg/bot/282547024547545109'),
new MessageButton()
.setStyle('LINK')
- .setLabel('Join Binaryworks Community')
+ .setLabel('Join Andrew Lee Projects')
.setURL('https://discord.gg/EFhRDqG')
);