diff options
Diffstat (limited to 'src/cmd_nick.cpp')
-rw-r--r-- | src/cmd_nick.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cmd_nick.cpp b/src/cmd_nick.cpp index dd3850342..fe600dc30 100644 --- a/src/cmd_nick.cpp +++ b/src/cmd_nick.cpp @@ -49,6 +49,7 @@ using namespace std; #include "typedefs.h" #include "command_parse.h" #include "cmd_nick.h" +#include "cull_list.h" extern ServerConfig* Config; extern InspIRCd* ServerInstance; @@ -63,6 +64,8 @@ extern std::vector<userrec*> all_opers; extern std::vector<userrec*> local_users; extern userrec* fd_ref_table[65536]; +extern CullList* GlobalGoners; + void cmd_nick::Handle (char **parameters, int pcnt, userrec *user) { char oldnick[NICKMAX]; @@ -191,7 +194,7 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user) { /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */ FOREACH_MOD(I_OnUserRegister,OnUserRegister(user)); - ConnectUser(user); + ConnectUser(user,GlobalGoners); } if (user->registered == 7) { |