add credits

This commit is contained in:
SowinskiBraeden committed 2022-08-01 22:26:41 -07:00
1 parent 766c8171f0
commit 2b6ebfe7db
1 file changed
+19
+19
View File
@@ -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] })
}
},
},