From d87aeeb3fe7cf32e2add38a82b826463a1c9c63f Mon Sep 17 00:00:00 2001 From: Justin Date: Sat, 8 Aug 2015 19:07:30 -0700 Subject: [PATCH] Fixing user registration --- commands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.go b/commands.go index e661dd1..1eb115f 100644 --- a/commands.go +++ b/commands.go @@ -112,6 +112,7 @@ func NickHandler(message *irc.Message, client *Client) { //fmt.Println("Updating client name") } else { client.Nickname = newNickname + client.Server.UpdateClientNick(client, newNickname) } }