mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 12:21:00 -05:00
20 lines
914 B
TypeScript
20 lines
914 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([
|
||
|
'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 helped and worked on the bot.')
|
||
|
}
|