From 16357ff5761078c89a6897ab12b6697fb0b70dc4 Mon Sep 17 00:00:00 2001 From: Eric Yang <64386991+xlq902@users.noreply.github.com> Date: Sun, 18 Apr 2021 22:59:25 -0400 Subject: [PATCH] Update bot.js Changed "you can't ban yourself" for kick command to "you can't kick yourself", although why doesn't the person who wants to kick themselves just leave the server in the first place :/ --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.js b/bot.js index 2a5560d..a024ffa 100644 --- a/bot.js +++ b/bot.js @@ -577,7 +577,7 @@ async function kick(message) { const member = members.array()[0]; if (member === message.member) { - message.reply("you can't ban yourself!"); + message.reply("you can't kick yourself!"); return; }