diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ns_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ns_info.c b/src/core/ns_info.c index 623d2f92d..f000f5bfb 100644 --- a/src/core/ns_info.c +++ b/src/core/ns_info.c @@ -98,7 +98,7 @@ class CommandNSInfo : public Command // XXX: we should perhaps show their opertype here. if (na->nc->IsServicesOper()) { - if (show_hidden || (!na->nc->flags & NI_HIDE_STATUS)) + if (show_hidden || (!(na->nc->flags & NI_HIDE_STATUS))) { notice_lang(s_NickServ, u, NICK_INFO_SERVICES_OPERTYPE, na->nick, na->nc->ot->GetName().c_str()); |