From: brain Date: Mon, 9 Jan 2006 11:23:42 +0000 (+0000) Subject: Added chmodes-with-params X-Git-Tag: v2.0.23~9329 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=6637802f216f3687cd5b0f42dcf6fc553299fdb9;p=user%2Fhenk%2Fcode%2Finspircd.git Added chmodes-with-params git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2748 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/users.cpp b/src/users.cpp index 099e88e94..2266075cb 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -684,7 +684,7 @@ void FullConnectUser(userrec* user, CullList* Goners) WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Config->Network,user->nick,user->ident,user->host); WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,Config->ServerName,VERSION); WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__); - WriteServ(user->fd,"004 %s %s %s iowghrasxRVSCWBG lvhopsmntikrcaqbegOLQRSKVHGCNT",user->nick,Config->ServerName,VERSION); + WriteServ(user->fd,"004 %s %s %s iowghrasxRVSCWBG lvhopsmntikrcaqbegIOLQRSKVHGCNT vhobeIaqglk",user->nick,Config->ServerName,VERSION); // anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line... // so i'd better split it :) std::stringstream out(Config->data005);