diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-30 16:55:37 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-30 16:55:37 -0500 |
commit | 83db032fb91996c926a5d007a9e5fa4abed65871 (patch) | |
tree | 28081718636b6c41aea89018504f3f7e4f837903 /src/commands/moderation/warn.ts | |
parent | f0a9f894575871d498447c5de2b5f0f826b117b7 (diff) | |
download | tanzanite-83db032fb91996c926a5d007a9e5fa4abed65871.tar.gz tanzanite-83db032fb91996c926a5d007a9e5fa4abed65871.tar.bz2 tanzanite-83db032fb91996c926a5d007a9e5fa4abed65871.zip |
add timeout command and fix some other moderation commands
Diffstat (limited to 'src/commands/moderation/warn.ts')
-rw-r--r-- | src/commands/moderation/warn.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/moderation/warn.ts b/src/commands/moderation/warn.ts index 5093c9b..05b1e36 100644 --- a/src/commands/moderation/warn.ts +++ b/src/commands/moderation/warn.ts @@ -67,12 +67,12 @@ export default class WarnCommand extends BushCommand { return message.util.reply(canModerateResponse); } - const { result: response, caseNum } = await member.warn({ + const { result: response, caseNum } = await member.bushWarn({ reason, moderator: message.member }); - const responseMessage = () => { + const responseMessage = (): string => { const victim = util.format.input(member.user.tag); switch (response) { case 'error creating modlog entry': |