1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-30 00:50:59 -04:00
Daggerbot-TS/src/commands/warn.ts

18 lines
665 B
TypeScript
Raw Normal View History

import Discord,{SlashCommandBuilder} from 'discord.js';
2023-01-27 21:33:55 -05:00
import TClient from 'src/client';
2022-11-13 19:18:15 -05:00
export default {
async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
client.punish(client, interaction, 'warn');
2022-11-13 19:18:15 -05:00
},
data: new SlashCommandBuilder()
.setName('warn')
.setDescription('Warn a member')
.addUserOption((opt)=>opt
.setName('member')
.setDescription('Which member to warn?')
.setRequired(true))
.addStringOption((opt)=>opt
.setName('reason')
.setDescription('Reason for the warning')
.setRequired(false))
2022-11-13 19:18:15 -05:00
}