From 148060def2f9ac55eb96d94cf1430a2f67a10ea8 Mon Sep 17 00:00:00 2001 From: EdVoids <92118392+EdVoids@users.noreply.github.com> Date: Sun, 20 Nov 2022 09:40:11 +0700 Subject: [PATCH] Update kick.js --- src/commands/moderation/kick.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/moderation/kick.js b/src/commands/moderation/kick.js index f38e25e51..002a323a9 100644 --- a/src/commands/moderation/kick.js +++ b/src/commands/moderation/kick.js @@ -55,6 +55,6 @@ async function kick(issuer, target, reason) { const response = await kickTarget(issuer, target, reason); if (typeof response === "boolean") return `${target.user.tag} is kicked!`; if (response === "BOT_PERM") return `I do not have permission to warn ${target.user.tag}`; - else if (response === "MEMBER_PERM") return `You do not have permission to warn ${target.user.tag}`; + else if (response === "MEMBER_PERM") return `You do not have permission to kick ${target.user.tag}`; else return `Failed to warn ${target.user.tag}`; }