mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 00:31:00 -05:00
18 lines
595 B
TypeScript
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))
|
|
} |