diff --git a/lib/plugins/command.js b/lib/plugins/command.js index eeb107b..aa25f3e 100644 --- a/lib/plugins/command.js +++ b/lib/plugins/command.js @@ -193,7 +193,15 @@ function command(username, message) { break; case "follow": - subcommand("go follow " + message_parts.slice(1).join(" ")) + switch (message_parts.length) { + case 1: + subcommand("go follow me") + break; + + default: + subcommand("go " + message) + break; + } break; case "come": switch (message_parts[1]) {