From 8691870bf726a898b11cc4173e42db5b6f597cf3 Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 22 Oct 2007 15:01:15 +0000 Subject: Remove a wrapper, it's easy to read as is :p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8300 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/commands/cmd_lusers.cpp | 2 +- src/helperfuncs.cpp | 6 ------ src/modules/m_spanningtree/main.cpp | 4 ++-- 3 files changed, 3 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/commands/cmd_lusers.cpp b/src/commands/cmd_lusers.cpp index 04f2906ac..3088169a7 100644 --- a/src/commands/cmd_lusers.cpp +++ b/src/commands/cmd_lusers.cpp @@ -25,7 +25,7 @@ CmdResult CommandLusers::Handle (const char** parameters, int pcnt, User *user) { // this lusers command shows one server at all times because // a protocol module must override it to show those stats. - user->WriteServ("251 %s :There are %d users and %d invisible on 1 server",user->nick,ServerInstance->UserCount()-ServerInstance->InvisibleUserCount(),ServerInstance->InvisibleUserCount()); + user->WriteServ("251 %s :There are %d users and %d invisible on 1 server",user->nick,ServerInstance->UserCount()-ServerInstance->ModeCount('i'),ServerInstance->ModeCount('i')); if (ServerInstance->OperCount()) user->WriteServ("252 %s %d :operator(s) online",user->nick,ServerInstance->OperCount()); if (ServerInstance->UnregisteredUserCount()) diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 388e9bb50..4fe1fb3b2 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -360,12 +360,6 @@ int InspIRCd::ModeCount(const char mode) return 0; } -/* wrapper for readability */ -int InspIRCd::InvisibleUserCount() -{ - return ModeCount('i'); -} - /* return how many users are opered */ int InspIRCd::OperCount() { diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 2ccf510c7..7a0c0a2e1 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -134,8 +134,8 @@ void ModuleSpanningTree::HandleLusers(const char** parameters, int pcnt, User* u } } user->WriteServ("251 %s :There are %d users and %d invisible on %d servers",user->nick, - n_users-ServerInstance->InvisibleUserCount(), - ServerInstance->InvisibleUserCount(), + n_users-ServerInstance->ModeCount('i'), + ServerInstance->ModeCount('i'), ulined_count ? this->CountServs() - ulined_count : this->CountServs()); if (ServerInstance->OperCount()) -- cgit v1.2.3