mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2025-03-01 22:19:41 +11:00
22 lines
698 B
TypeScript
22 lines
698 B
TypeScript
import Discord from 'discord.js';
|
|
import TClient from '../client.js';
|
|
import Punish from '../components/Punish.js';
|
|
export default class Mute {
|
|
static run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
|
Punish(client, interaction, 'mute');
|
|
}
|
|
static 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'))
|
|
}
|