From 27ef83972528a674af0208c22a6291da8f641c53 Mon Sep 17 00:00:00 2001 From: Zorchenhimer Date: Thu, 11 Apr 2019 21:50:31 -0400 Subject: [PATCH] Fix regression with the /me command Don't return an error if it works. --- chatcommands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/chatcommands.go b/chatcommands.go index 73dd6bc..e7b92ba 100644 --- a/chatcommands.go +++ b/chatcommands.go @@ -29,6 +29,7 @@ var commands = &CommandControl{ Function: func(client *Client, args []string) (string, error) { if len(args) != 0 { client.Me(strings.Join(args, " ")) + return "", nil } return "", fmt.Errorf("Missing a message") },