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/warn.ts
2023-12-25 02:22:29 +11:00

19 lines
612 B
TypeScript

import Discord from 'discord.js';
import TClient from '../client.js';
import Punish from '../components/Punish.js';
export default class Warn {
static run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
Punish(client, interaction, 'warn');
}
static data = new Discord.SlashCommandBuilder()
.setName('warn')
.setDescription('Warn a member')
.addUserOption(x=>x
.setName('member')
.setDescription('Which member to warn?')
.setRequired(true))
.addStringOption(x=>x
.setName('reason')
.setDescription('Reason for the warning'))
}