diff --git a/commands/help.js b/commands/help.js index 94b8ab4..ab5bf8c 100644 --- a/commands/help.js +++ b/commands/help.js @@ -35,6 +35,12 @@ module.exports = { description: "get support for QuarksBot", value: "support", type: 1, + }, + { + name: "credits", + description: "QuarksBot Credits", + value: "credits", + type: 1, } ], /** @@ -161,6 +167,19 @@ module.exports = { `) return interaction.send({ embeds: [supportEmbed] }); + + } else if (args[0].name == 'credits') { + const creditsEmbed = new MessageEmbed() + .setColor(client.config.EmbedColor) + .setTitle('QuarksBot Credits') + .setDescription(` + **Bot Author:** McDazzzled#5307 + + Special thanks to Mav#1518 for the introduction to the project idea, + as well as providing feedback on features and providing feature ideas. + `); + + return interaction.send({ embeds: [creditsEmbed] }) } }, },