1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 20:40:59 -04:00
Daggerbot-TS/src/commands/contributors.ts
2022-11-30 01:22:26 +11:00

22 lines
1010 B
TypeScript

import Discord,{SlashCommandBuilder} from 'discord.js';
import { TClient } from 'src/client';
export default {
async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
const embed = 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'))
interaction.reply({embeds: [embed]})
},
data: new SlashCommandBuilder()
.setName('contributors')
.setDescription('List of people who contributed to the bot.')
.setDMPermission(false)
}