diff options
-rw-r--r-- | cmd_ping.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_ping.go b/cmd_ping.go index c5442b5..dc7131f 100644 --- a/cmd_ping.go +++ b/cmd_ping.go @@ -9,6 +9,6 @@ func handleClientPing(msg RMsg, client *Client) bool { client.Send(MakeMsg(self, ERR_NEEDMOREPARAMS, "PING", "Not enough parameters")) return true } - client.Send(MakeMsg(self, "PONG", msg.Params[0])) + client.Send(MakeMsg(self, "PONG", self.Name, msg.Params[0])) return true } |