summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-02-13 19:35:17 +0100
committerAttila Molnar <attilamolnar@hush.com>2016-02-13 19:35:17 +0100
commit09186df9f8c0d4f699b5abb4325d7dd583a8a0b1 (patch)
tree50ab831470e9a87182ba9546d7f2128c26049ffa /src
parentc6c61719b5a627ae68110ca4370a39bcfc4ff733 (diff)
m_namedmodes Only show chan key to members and opers with channels/auspex
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_namedmodes.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/modules/m_namedmodes.cpp b/src/modules/m_namedmodes.cpp
index cad18cff4..46710946b 100644
--- a/src/modules/m_namedmodes.cpp
+++ b/src/modules/m_namedmodes.cpp
@@ -33,7 +33,12 @@ static void DisplayList(User* user, Channel* channel)
continue;
items << " +" << mh->name;
if (mh->GetNumParams(true))
- items << " " << channel->GetModeParameter(letter);
+ {
+ if ((letter == 'k') && (!channel->HasUser(user)) && (!user->HasPrivPermission("channels/auspex")))
+ items << " <key>";
+ else
+ items << " " << channel->GetModeParameter(letter);
+ }
}
char pfx[MAXBUF];
snprintf(pfx, MAXBUF, ":%s 961 %s %s", ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), channel->name.c_str());