diff options
Diffstat (limited to 'src/cmd_nick.cpp')
-rw-r--r-- | src/cmd_nick.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cmd_nick.cpp b/src/cmd_nick.cpp index fe600dc30..7b4ea1e98 100644 --- a/src/cmd_nick.cpp +++ b/src/cmd_nick.cpp @@ -49,7 +49,6 @@ using namespace std; #include "typedefs.h" #include "command_parse.h" #include "cmd_nick.h" -#include "cull_list.h" extern ServerConfig* Config; extern InspIRCd* ServerInstance; @@ -64,8 +63,6 @@ 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]; @@ -194,7 +191,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,GlobalGoners); + //ConnectUser(user,NULL); } if (user->registered == 7) { |