summaryrefslogtreecommitdiff
path: root/modules/commands/cs_seen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_seen.cpp')
-rw-r--r--modules/commands/cs_seen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/cs_seen.cpp b/modules/commands/cs_seen.cpp
index c5ae87a22..76cfe1eb9 100644
--- a/modules/commands/cs_seen.cpp
+++ b/modules/commands/cs_seen.cpp
@@ -98,11 +98,11 @@ static bool ShouldHide(const Anope::string &channel, User *u)
Channel *targetchan = Channel::Find(channel);
const ChannelInfo *targetchan_ci = targetchan ? *targetchan->ci : ChannelInfo::Find(channel);
- if (targetchan && targetchan->HasMode(CMODE_SECRET))
+ if (targetchan && targetchan->HasMode("SECRET"))
return true;
- else if (targetchan_ci && targetchan_ci->HasFlag(CI_PRIVATE))
+ else if (targetchan_ci && targetchan_ci->HasExt("PRIVATE"))
return true;
- else if (u && u->HasMode(UMODE_PRIV))
+ else if (u && u->HasMode("PRIV"))
return true;
return false;
}