From b1dab1968c76c502fc078292ea77a49ba009be01 Mon Sep 17 00:00:00 2001 From: jay Date: Tue, 5 Jan 2021 11:34:49 +0500 Subject: [PATCH] fix(command): :pencil2: fix `follow` command not working --- lib/plugins/command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/command.js b/lib/plugins/command.js index c013ffd..e6e3f50 100644 --- a/lib/plugins/command.js +++ b/lib/plugins/command.js @@ -193,7 +193,7 @@ function command(username, message) { break; case "follow": - subcommand("go follow " + message_parts.slice(2).join(" ")) + subcommand("go follow " + message_parts.slice(1).join(" ")) break; case "come": switch (message_parts[1]) {