From cc129d466f503f62316f63ca77b0ea801e8fa5b4 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Fri, 18 Oct 2019 07:42:07 -0400 Subject: [PATCH] Show command used instead of hardcoded reply --- cmdReply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdReply.go b/cmdReply.go index 457daf1..898d5e3 100644 --- a/cmdReply.go +++ b/cmdReply.go @@ -22,7 +22,7 @@ func init() { func cmdReply(cmd []string) { chat := k.NewChat(channel) if len(cmd) < 2 { - printToView("Feed", fmt.Sprintf("%sreply $ID - Reply to message $ID", cmdPrefix)) + printToView("Feed", fmt.Sprintf("%s%s $ID - Reply to message $ID", cmdPrefix, cmd[0])) return } messageID, err := strconv.Atoi(cmd[1])