From 83db032fb91996c926a5d007a9e5fa4abed65871 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 30 Dec 2021 16:55:37 -0500 Subject: add timeout command and fix some other moderation commands --- src/commands/moderation/warn.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/moderation/warn.ts') 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': -- cgit