1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 16:30:58 -05:00
Daggerbot-TS/src/commands/contributors.ts

16 lines
795 B
TypeScript
Raw Normal View History

2023-05-23 01:14:17 -04:00
import Discord from 'discord.js';
2023-04-14 06:47:58 -04:00
import TClient from '../client.js';
2023-08-29 20:21:53 -04:00
import MessageTool from '../helpers/MessageTool.js';
export default {
2023-03-05 05:04:10 -05:00
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
2023-08-29 20:21:53 -04:00
interaction.reply({embeds: [new client.embed().setColor(client.config.embedColor).setTitle('Daggerbot contributors').setDescription(MessageTool.concatMessage(
'**Thanks to those below that contributed to/developed the bot!**',
2023-09-26 06:52:56 -04:00
client.config.contribList.map(id=>{
const member = interaction.guild.members.cache.get(id);
return `${member?.user?.username ?? 'N/A'} <@${id}>`}
).join('\n')))]})
2023-03-05 05:04:10 -05:00
},
2023-05-23 01:14:17 -04:00
data: new Discord.SlashCommandBuilder()
2023-03-05 05:04:10 -05:00
.setName('contributors')
.setDescription('List of people who contributed to the bot')
}