Exclude LUSERS lines with zero counts (NO WE WONT CHANGE THE SPELLING OF connection(s)!)

git-svn-id: http://svn.inspircd.org/repository/branches/1_0_stable@4542 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2006-07-25 11:20:46 +00:00
parent 38a603a5a0
commit 7345d66835
2 changed files with 12 additions and 7 deletions

View File

@ -38,10 +38,12 @@ void cmd_lusers::Handle (char **parameters, int pcnt, userrec *user)
// this lusers command shows one server at all times because // this lusers command shows one server at all times because
// a protocol module must override it to show those stats. // a protocol module must override it to show those stats.
WriteServ(user->fd,"251 %s :There are %d users and %d invisible on 1 server",user->nick,usercnt()-usercount_invisible(),usercount_invisible()); WriteServ(user->fd,"251 %s :There are %d users and %d invisible on 1 server",user->nick,usercnt()-usercount_invisible(),usercount_invisible());
WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers()); if (usercount_opers())
WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown()); WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount()); if (usercount_unknown())
WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
if (chancount())
WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
WriteServ(user->fd,"254 %s :I have %d clients and 0 servers",user->nick,local_count()); WriteServ(user->fd,"254 %s :I have %d clients and 0 servers",user->nick,local_count());
} }

View File

@ -2995,9 +2995,12 @@ class ModuleSpanningTree : public Module
max_global = n_users; max_global = n_users;
WriteServ(user->fd,"251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-usercount_invisible(),usercount_invisible(),this->CountServs()); WriteServ(user->fd,"251 %s :There are %d users and %d invisible on %d servers",user->nick,n_users-usercount_invisible(),usercount_invisible(),this->CountServs());
WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers()); if (usercount_opers())
WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown()); WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount()); if (usercount_unknown())
WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
if (chancount())
WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs()); WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),this->CountLocalServs());
WriteServ(user->fd,"265 %s :Current Local Users: %d Max: %d",user->nick,local_count(),max_local); WriteServ(user->fd,"265 %s :Current Local Users: %d Max: %d",user->nick,local_count(),max_local);
WriteServ(user->fd,"266 %s :Current Global Users: %d Max: %d",user->nick,n_users,max_global); WriteServ(user->fd,"266 %s :Current Global Users: %d Max: %d",user->nick,n_users,max_global);