diff options
| author | 2006-03-08 23:16:18 +0000 | |
|---|---|---|
| committer | 2006-03-08 23:16:18 +0000 | |
| commit | aaf5226111f515f4baa68e95ea6a1db740828ac3 (patch) | |
| tree | ab8b622f04ebf09448ee0f2e02f32496812db003 /src/cmd_who.cpp | |
| parent | Removed declarations of ancient and misspelled functions :/ (diff) | |
Removed has_channel(userrec*,chanrec*), the new preferred way of doing it is channel->HasUser(userrec)
Yeah its the other way around to the old way, but somehow, seems less backwards to me (its also faster)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3560 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_who.cpp')
| -rw-r--r-- | src/cmd_who.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp index d82b7906f..c25fa611d 100644 --- a/src/cmd_who.cpp +++ b/src/cmd_who.cpp @@ -115,7 +115,7 @@ void cmd_who::Handle (char **parameters, int pcnt, userrec *user) int n_list = 0; for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) { - if ((has_channel(i->second,Ptr)) && (isnick(i->second->nick))) + if ((Ptr->HasUser(i->second)) && (isnick(i->second->nick))) { // Fix Bug #29 - Part 2.. *tmp = 0; |
