From 877537043dd2a8ba16037f061716d9c6f7a5764a Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 27 Oct 2021 16:57:39 -0400 Subject: change printWidth to 130 and update dependecies --- src/commands/moderation/kick.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/commands/moderation/kick.ts') diff --git a/src/commands/moderation/kick.ts b/src/commands/moderation/kick.ts index 34c1b76..dab6807 100644 --- a/src/commands/moderation/kick.ts +++ b/src/commands/moderation/kick.ts @@ -62,9 +62,7 @@ export default class KickCommand extends BushCommand { const member = await message.guild!.members.fetch(user.id); if (!member) - return await message.util.reply( - `${util.emojis.error} The user you selected is not in the server or is not a valid user.` - ); + return await message.util.reply(`${util.emojis.error} The user you selected is not in the server or is not a valid user.`); if (!message.member) throw new Error(`message.member is null`); const useForce = force && message.author.isOwner(); const canModerateResponse = await Moderation.permissionCheck(message.member, member, 'kick', true, useForce); -- cgit