diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-25 11:20:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-25 11:20:53 +0000 |
commit | 7d8bca01e0bb5e4e7ea0a6bca29b42584ca6d6ae (patch) | |
tree | b8906fd977942a053bc9a629714ead0604341906 /src/cmd_lusers.cpp | |
parent | f3abcc8befc200b906aa835d76435856eb3c8645 (diff) |
Exclude LUSERS lines with zero counts (NO WE WONT CHANGE THE SPELLING OF connection(s)!)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4543 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_lusers.cpp')
-rw-r--r-- | src/cmd_lusers.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/cmd_lusers.cpp b/src/cmd_lusers.cpp index 3b1decea3..fb28adc46 100644 --- a/src/cmd_lusers.cpp +++ b/src/cmd_lusers.cpp @@ -24,8 +24,12 @@ void cmd_lusers::Handle (const char** parameters, int pcnt, userrec *user) // this lusers command shows one server at all times because // 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,"252 %s %d :operator(s) online",user->nick,usercount_opers()); - WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown()); - 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()); + if (usercount_opers()) + WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers()); + 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()); + if (local_count()) + WriteServ(user->fd,"254 %s :I have %d clients and 0 servers",user->nick,local_count()); } |