1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 16:30:58 -05:00
Daggerbot-TS/src/commands/mute.ts
2023-05-23 15:14:17 +10:00

20 lines
625 B
TypeScript

import Discord from 'discord.js';
import TClient from '../client.js';
export default {
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
client.punish(interaction, 'mute');
},
data: new Discord.SlashCommandBuilder()
.setName('mute')
.setDescription('Mute a member')
.addUserOption(x=>x
.setName('member')
.setDescription('Which member to mute?')
.setRequired(true))
.addStringOption(x=>x
.setName('time')
.setDescription('Mute duration'))
.addStringOption(x=>x
.setName('reason')
.setDescription('Reason for the mute'))
}