From a40f27164b1d47e23ffe0a6403ea890e83b8eb1e Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 21 Nov 2019 15:08:58 +0100 Subject: [PATCH] Added github repo --- commands/utility/about.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/utility/about.js b/commands/utility/about.js index 3cff543a..1f19b798 100644 --- a/commands/utility/about.js +++ b/commands/utility/about.js @@ -35,10 +35,11 @@ class aboutCommand extends Command { .setColor(message.member.displayHexColor) .setAuthor(this.client.user.username, this.client.user.avatarURL()) .setTitle('About me') - .setURL('https://gitlab.com/LoicBersier/DiscordBot') .setDescription(description) .addField('Current owner: ', `${this.client.users.get(ownerID).username}#${this.client.users.get(ownerID).discriminator} (${ownerID})`) - .setFooter(`Gitlab link in the title | Original bot made by ${this.client.users.get('267065637183029248').username}#${this.client.users.get('267065637183029248').discriminator} (267065637183029248)`); // Please don't change the "original bot made by" + .addField('Gitlab', 'https://gitlab.com/LoicBersier/DiscordBot', true) + .addField('Github', 'https://github.com/loicbersier/Haha-yes', true) + .setFooter(`Original bot made by ${this.client.users.get('267065637183029248').username}#${this.client.users.get('267065637183029248').discriminator} (267065637183029248)`); // Please don't change the "original bot made by" message.channel.send(aboutEmbed); }