2022-11-20 04:04:40 -05:00
|
|
|
import Discord,{SlashCommandBuilder} from 'discord.js';
|
2023-04-14 06:47:58 -04:00
|
|
|
import TClient from '../client.js';
|
2022-11-20 04:04:40 -05:00
|
|
|
export default {
|
2023-03-05 05:04:10 -05:00
|
|
|
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
2023-05-07 04:41:20 -04:00
|
|
|
client.punish(interaction, 'softban');
|
2023-03-05 05:04:10 -05:00
|
|
|
},
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('softban')
|
|
|
|
.setDescription('Softban a member from the server')
|
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 softban?')
|
|
|
|
.setRequired(true))
|
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 softban'))
|
2022-11-20 04:04:40 -05:00
|
|
|
}
|