diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/os_userlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/os_userlist.c b/src/core/os_userlist.c index a04b8f2e6..788954126 100644 --- a/src/core/os_userlist.c +++ b/src/core/os_userlist.c @@ -43,7 +43,7 @@ class CommandOSUserList : public Command for (cu = c->users; cu; cu = cu->next) { - if (modes && !(cu->user->mode & mode)) + if (modes && !(cu->user->mode & modes)) continue; notice_lang(s_OperServ, u, OPER_USERLIST_RECORD, cu->user->nick, cu->user->GetIdent().c_str(), cu->user->GetDisplayedHost().c_str()); } |