mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 04:40:59 -05:00
20 lines
659 B
TypeScript
20 lines
659 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, 'mute');
|
|
},
|
|
data: new SlashCommandBuilder()
|
|
.setName('mute')
|
|
.setDescription('Mute a member')
|
|
.addUserOption(opt=>opt
|
|
.setName('member')
|
|
.setDescription('Which member to mute?')
|
|
.setRequired(true))
|
|
.addStringOption(opt=>opt
|
|
.setName('time')
|
|
.setDescription('Mute duration'))
|
|
.addStringOption(opt=>opt
|
|
.setName('reason')
|
|
.setDescription('Reason for the mute'))
|
|
} |