diff options
Diffstat (limited to 'src/channels.cpp')
-rw-r--r-- | src/channels.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index 505ef479a..e9e2a3020 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -36,6 +36,7 @@ namespace ChanModeReference limitmode(NULL, "limit"); ChanModeReference secretmode(NULL, "secret"); ChanModeReference privatemode(NULL, "private"); + UserModeReference invisiblemode(NULL, "invisible"); } Channel::Channel(const std::string &cname, time_t ts) @@ -683,7 +684,7 @@ void Channel::UserList(User *user) { if (i->first->quitting) continue; - if ((!has_user) && (i->first->IsModeSet('i'))) + if ((!has_user) && (i->first->IsModeSet(invisiblemode))) { /* * user is +i, and source not on the channel, does not show |