2022-11-17 12:58:19 -05:00
|
|
|
import Discord,{SlashCommandBuilder} from 'discord.js';
|
2023-01-27 21:33:55 -05:00
|
|
|
import TClient from 'src/client';
|
2022-11-17 12:58:19 -05:00
|
|
|
export default {
|
2023-03-05 05:04:10 -05:00
|
|
|
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
|
|
|
interaction.reply({embeds: [new client.embed().setColor(client.config.embedColor).setTitle('Daggerbot contributors').setDescription([
|
|
|
|
'**Thanks to those below that contributed to the bot!**',
|
|
|
|
'Toast <@190407856527376384>',
|
|
|
|
'TÆMBØ <@615761944154210305>',
|
|
|
|
'Buzz <@593696856165449749>',
|
|
|
|
'Monster <@215497515934416896>',
|
|
|
|
'RainbowDave <@141304507249197057>',
|
|
|
|
'Hitchhiker <@506022868157595648>',
|
|
|
|
'RedRover92 <@633345781780185099>',
|
|
|
|
'Nawdic <@178941218510602240>'
|
|
|
|
].join('\n'))]})
|
|
|
|
},
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('contributors')
|
2023-03-29 07:21:46 -04:00
|
|
|
.setDescription('List of people who contributed to the bot')
|
2022-11-17 12:58:19 -05:00
|
|
|
}
|