server ctime

This commit is contained in:
Jeremy Latt 2012-04-17 22:21:41 -07:00
parent 4cee1ef909
commit 259fd40916
3 changed files with 7 additions and 3 deletions

View file

@ -65,7 +65,7 @@ func tryRegister(s *Server, c *Client) {
c.registered = true
c.send <- ReplyWelcome(c)
c.send <- ReplyYourHost(c.Nick(), s.name)
c.send <- ReplyCreated(c.Nick(), "2012/04/07")
c.send <- ReplyCreated(c.Nick(), s.ctime)
c.send <- ReplyMyInfo(c.Nick(), s.name)
}
}