1
0
mirror of https://github.com/shazow/ssh-chat.git synced 2025-07-30 07:08:41 +03:00

/reply: Enabled again.

Fixes 
This commit is contained in:
Andrey Petrov 2016-08-16 14:20:32 -04:00
parent 22e714a5ad
commit 47607af729

@ -292,6 +292,7 @@ func (h *Host) InitCommands(c *chat.Commands) {
txt := fmt.Sprintf("[Sent PM to %s]", target.Name()) txt := fmt.Sprintf("[Sent PM to %s]", target.Name())
ms := message.NewSystemMsg(txt, msg.From()) ms := message.NewSystemMsg(txt, msg.From())
room.Send(ms) room.Send(ms)
target.SetReplyTo(msg.From())
return nil return nil
}, },
}) })