mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 20:30:58 -05:00
12 lines
444 B
TypeScript
12 lines
444 B
TypeScript
|
import Discord from 'discord.js';
|
||
|
import { TClient } from 'src/client';
|
||
|
export default {
|
||
|
async run(client: TClient, message: Discord.Message, args: any){
|
||
|
client.unPunish(client, message, args);
|
||
|
},
|
||
|
name: 'unpunish',
|
||
|
description: 'Remove an active punishment from a user or an entry from their punishment history.',
|
||
|
usage: ['case id', '?reason'],
|
||
|
alias: ['unban', 'unmute', 'unwarn'],
|
||
|
category: 'moderation'
|
||
|
}
|