From dbca69da29633abd79ff8ce546d5e2b2b4c43d04 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Tue, 11 Apr 2017 23:13:26 +0100 Subject: [PATCH] Automatically apply +P to all permanent channels. --- docs/conf/modules.conf.example | 1 - src/modules/m_permchannels.cpp | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 835e31795..33da80c56 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1434,7 +1434,6 @@ # # # You may also create channels on startup by using the block. -# Don't forget to set them +P in the modes, or they won't stay permanent. # #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# diff --git a/src/modules/m_permchannels.cpp b/src/modules/m_permchannels.cpp index 9e77bd60e..d514e62a5 100644 --- a/src/modules/m_permchannels.cpp +++ b/src/modules/m_permchannels.cpp @@ -244,6 +244,10 @@ public: mode->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, c, par, true); } } + + // We always apply the permchannels mode to permanent channels. + par.clear(); + p.OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, c, par, true); } } } -- 2.39.5