add credits
This commit is contained in:
1 file changed
+19
@@ -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] })
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
Reference in new issue
Block a user