mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 00:31:00 -05:00
19 lines
660 B
TypeScript
19 lines
660 B
TypeScript
|
import Discord from 'discord.js';
|
||
|
import TClient from '../client.js';
|
||
|
import Punish from '../components/Punish.js';
|
||
|
export default class Reminder {
|
||
|
static run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
||
|
Punish(client, interaction, 'remind');
|
||
|
}
|
||
|
static data = new Discord.SlashCommandBuilder()
|
||
|
.setName('reminder')
|
||
|
.setDescription('Remind a member that they\'re breaking the rules')
|
||
|
.addUserOption(x=>x
|
||
|
.setName('member')
|
||
|
.setDescription('Which member to remind?')
|
||
|
.setRequired(true))
|
||
|
.addStringOption(x=>x
|
||
|
.setName('reason')
|
||
|
.setDescription('Reason for the reminder'))
|
||
|
}
|