mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 16:30:58 -05:00
17 lines
539 B
TypeScript
17 lines
539 B
TypeScript
import Discord from 'discord.js';
|
|
import TClient from '../client.js';
|
|
export default {
|
|
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
|
client.punish(interaction, 'warn');
|
|
},
|
|
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'))
|
|
} |