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();