diff --git a/irc/nickserv.go b/irc/nickserv.go index 0352d458..2d3113c0 100644 --- a/irc/nickserv.go +++ b/irc/nickserv.go @@ -339,6 +339,10 @@ func nsRegisterHandler(server *Server, client *Client, command string, params [] return } + if !nsLoginThrottleCheck(client, rb) { + return + } + config := server.AccountConfig() var callbackNamespace, callbackValue string noneCallbackAllowed := false