diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-29 22:12:48 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-29 22:12:48 -0500 |
commit | 1182f63498c856111762e2766d6cdddf063f2a97 (patch) | |
tree | 1610dfa9f76d15fd5731a900b854d62d08438ddc /src/lib/common/util | |
parent | a540b4083b7a5662ec49b7576b215fe5d3153358 (diff) | |
download | tanzanite-1182f63498c856111762e2766d6cdddf063f2a97.tar.gz tanzanite-1182f63498c856111762e2766d6cdddf063f2a97.tar.bz2 tanzanite-1182f63498c856111762e2766d6cdddf063f2a97.zip |
misc improvements
Diffstat (limited to 'src/lib/common/util')
-rw-r--r-- | src/lib/common/util/Moderation.ts | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/lib/common/util/Moderation.ts b/src/lib/common/util/Moderation.ts index 3cabb77..c06ad25 100644 --- a/src/lib/common/util/Moderation.ts +++ b/src/lib/common/util/Moderation.ts @@ -26,7 +26,17 @@ export class Moderation { public static async permissionCheck( moderator: BushGuildMember, victim: BushGuildMember, - type: 'mute' | 'unmute' | 'warn' | 'kick' | 'ban' | 'unban' | 'add a punishment role to' | 'remove a punishment role from', + type: + | 'mute' + | 'unmute' + | 'warn' + | 'kick' + | 'ban' + | 'unban' + | 'add a punishment role to' + | 'remove a punishment role from' + | 'block' + | 'unblock', checkModerator = true, force = false ): Promise<true | string> { @@ -262,7 +272,7 @@ export interface CreatePunishmentEntryOptions { modlog: string; /** - * The role id if the punishment is a role punishment. + * Extra information for the punishment. The role for role punishments and the channel for blocks. */ extraInfo?: Snowflake; } @@ -287,7 +297,7 @@ export interface RemovePunishmentEntryOptions { guild: BushGuildResolvable; /** - * The role id if the punishment is a role punishment. + * Extra information for the punishment. The role for role punishments and the channel for blocks. */ extraInfo?: Snowflake; } |