2023-05-23 01:14:17 -04:00
|
|
|
import Discord from 'discord.js';
|
2023-04-14 06:47:58 -04:00
|
|
|
import TClient from '../client.js';
|
2023-08-30 04:34:59 -04:00
|
|
|
import Punish from '../funcs/Punish.js';
|
2022-11-13 19:18:15 -05:00
|
|
|
export default {
|
2023-03-05 05:04:10 -05:00
|
|
|
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
2023-08-30 04:34:59 -04:00
|
|
|
Punish(client, interaction, 'warn');
|
2023-03-05 05:04:10 -05:00
|
|
|
},
|
2023-05-23 01:14:17 -04:00
|
|
|
data: new Discord.SlashCommandBuilder()
|
2023-03-05 05:04:10 -05:00
|
|
|
.setName('warn')
|
|
|
|
.setDescription('Warn a member')
|
2023-05-23 01:14:17 -04:00
|
|
|
.addUserOption(x=>x
|
2023-03-05 05:04:10 -05:00
|
|
|
.setName('member')
|
|
|
|
.setDescription('Which member to warn?')
|
|
|
|
.setRequired(true))
|
2023-05-23 01:14:17 -04:00
|
|
|
.addStringOption(x=>x
|
2023-03-05 05:04:10 -05:00
|
|
|
.setName('reason')
|
2023-05-23 01:14:17 -04:00
|
|
|
.setDescription('Reason for the warning'))
|
2022-11-13 19:18:15 -05:00
|
|
|
}
|