1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00
Daggerbot-TS/src/commands/softban.ts

17 lines
665 B
TypeScript

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