From 47607af7294a99f8250d73ce413db40d16708f38 Mon Sep 17 00:00:00 2001 From: Andrey Petrov <andrey.petrov@shazow.net> Date: Tue, 16 Aug 2016 14:20:32 -0400 Subject: [PATCH] /reply: Enabled again. Fixes #202 --- host.go | 1 + 1 file changed, 1 insertion(+) diff --git a/host.go b/host.go index 52e4416..631375b 100644 --- a/host.go +++ b/host.go @@ -292,6 +292,7 @@ func (h *Host) InitCommands(c *chat.Commands) { txt := fmt.Sprintf("[Sent PM to %s]", target.Name()) ms := message.NewSystemMsg(txt, msg.From()) room.Send(ms) + target.SetReplyTo(msg.From()) return nil }, })