From a3713e60be95b9b51ea5930d22e39f6dfc328beb Mon Sep 17 00:00:00 2001 From: Zerio Date: Sat, 25 Sep 2021 17:49:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Credit=20modification?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/core/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/core/help.js b/commands/core/help.js index 2fa31d1..0cd0b3a 100644 --- a/commands/core/help.js +++ b/commands/core/help.js @@ -14,7 +14,7 @@ module.exports = { const commands = client.commands.filter(x => x.showHelp !== false); - embed.setDescription('This code comes from a GitHub project (ZerioDev/Music-bot).\nThe use of this one is possible while keeping the credits for free.\nIf you want to remove the credits join the Discord support server.'); + embed.setDescription('This code comes from a GitHub project [ZerioDev/Music-bot](https://github.com/ZerioDev/Music-bot).\nThe use of this one is possible while keeping the credits for free.\nIf you want to remove the credits join the Discord support server.'); embed.addField(`Enabled - ${commands.size}`, commands.map(x => `\`${x.name}${x.aliases[0] ? ` (${x.aliases.map(y => y).join(', ')})\`` : '\`'}`).join(' | ')); embed.setTimestamp();