2022-11-17 12:58:19 -05:00
|
|
|
import Discord,{SlashCommandBuilder} from 'discord.js';
|
2023-04-14 06:47:58 -04:00
|
|
|
import TClient from '../client.js';
|
2022-11-17 12:58:19 -05:00
|
|
|
export default {
|
2023-03-05 05:04:10 -05:00
|
|
|
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
|
|
|
client.punish(client, interaction, 'mute');
|
|
|
|
},
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('mute')
|
|
|
|
.setDescription('Mute a member')
|
2023-04-24 06:10:11 -04:00
|
|
|
.addUserOption(opt=>opt
|
2023-03-05 05:04:10 -05:00
|
|
|
.setName('member')
|
|
|
|
.setDescription('Which member to mute?')
|
|
|
|
.setRequired(true))
|
2023-04-24 06:10:11 -04:00
|
|
|
.addStringOption(opt=>opt
|
2023-03-05 05:04:10 -05:00
|
|
|
.setName('time')
|
|
|
|
.setDescription('Mute duration'))
|
2023-04-24 06:10:11 -04:00
|
|
|
.addStringOption(opt=>opt
|
2023-03-05 05:04:10 -05:00
|
|
|
.setName('reason')
|
|
|
|
.setDescription('Reason for the mute'))
|
2022-11-17 12:58:19 -05:00
|
|
|
}
|