1
0
Fork 0
forked from External/ergo

Fix privmsg.

This commit is contained in:
Jeremy Latt 2012-12-12 23:33:09 -08:00
parent 2cbf65564e
commit b7ed55d45c
2 changed files with 10 additions and 12 deletions

View file

@ -383,7 +383,7 @@ func (m *PrivMsgMessage) Handle(s *Server, c *Client) {
}
} else {
if client := s.nicks[m.target]; client != nil {
client.send <- RplPrivMsg(c, m.message)
client.send <- RplPrivMsg(c, client, m.message)
return
}
}