1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-18 04:40:59 -05:00
Daggerbot-TS/src/commands/softban.ts
2023-12-25 02:22:29 +11:00

19 lines
625 B
TypeScript

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