From 9a3ac5bc6e9d383975a2a35de1ee74585a42cbee Mon Sep 17 00:00:00 2001 From: loicbersier Date: Wed, 23 Oct 2019 14:26:57 +0200 Subject: [PATCH] show who made the bot with the ID --- commands/utility/about.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/about.js b/commands/utility/about.js index 580b957e..c6e170f2 100644 --- a/commands/utility/about.js +++ b/commands/utility/about.js @@ -22,7 +22,7 @@ class aboutCommand extends Command { .setTitle('About me') .setURL('https://gitlab.com/LoicBersier/DiscordBot') .setDescription('This bot is made using [discord.js](https://github.com/discordjs/discord.js) & [Discord-Akairo](https://github.com/discord-akairo/discord-akairo)\nHelp command from [hoshi](https://github.com/1Computer1/hoshi)\n* [Rantionary](https://github.com/RantLang/Rantionary) for there dictionnary.\nThanks to Tina the Cyclops girl#5759 for inspiring me for making this bot!') - .setFooter('Gitlab link in the title | Original bot made by Supositware#1616 (267065637183029248)'); + .setFooter(`Gitlab link in the title | Original bot made by ${this.client.users.get('267065637183029248').username}#${this.client.users.get('267065637183029248').discriminator} (267065637183029248)`); message.channel.send(aboutEmbed); }