1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-18 00:31:00 -05:00
Daggerbot-TS/src/commands/warn.ts
AnxietyisReal 9e33bd6885 Tweak?
2023-04-24 20:10:11 +10:00

18 lines
595 B
TypeScript

import Discord,{SlashCommandBuilder} from 'discord.js';
import TClient from '../client.js';
export default {
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
client.punish(client, interaction, 'warn');
},
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))
}