From 5c6143a56378cdd7f4e342fa815a038f4c2fa6af Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Fri, 14 Apr 2017 15:40:24 +0100 Subject: Warn when a user configures a permanent channel without +P. --- src/modules/m_permchannels.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/modules/m_permchannels.cpp b/src/modules/m_permchannels.cpp index e86b3cbf6..74a798356 100644 --- a/src/modules/m_permchannels.cpp +++ b/src/modules/m_permchannels.cpp @@ -298,6 +298,12 @@ public: ServerInstance->Logs->Log("m_permchannels", DEBUG, "Added %s with topic %s", channel.c_str(), topic.c_str()); + if (modes.find('P') == std::string::npos) + { + ServerInstance->Logs->Log("m_permchannels", DEFAULT, "%s (%s) does not have +P set in ; it will be deleted when empty!", + c->name.c_str(), tag->getTagLocation().c_str()); + } + if (modes.empty()) continue; -- cgit v1.2.3