summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Wobst <michael@static.163.129.251.148.clients.your-server.de>2015-12-26 13:29:18 +0100
committerMichael Wobst <michael@static.163.129.251.148.clients.your-server.de>2015-12-26 13:29:18 +0100
commitcd6401f628b4579b09efaf5d679836f703a41a12 (patch)
tree4f194df27d697fa7843528ed4b29a10f4e8fc291
parenta25f94456d8d947b8b5ac76b79acaf5d95ac3445 (diff)
Add support for channel mode +T to the ircd-hybrid protocol module
-rw-r--r--modules/protocol/hybrid.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp
index f6a8feeab..e50c335d9 100644
--- a/modules/protocol/hybrid.cpp
+++ b/modules/protocol/hybrid.cpp
@@ -667,6 +667,7 @@ class ProtoHybrid : public Module
ModeManager::AddChannelMode(new ChannelModeOperOnly("OPERONLY", 'O'));
ModeManager::AddChannelMode(new ChannelMode("REGISTEREDONLY", 'R'));
ModeManager::AddChannelMode(new ChannelMode("SSL", 'S'));
+ ModeManager::AddChannelMode(new ChannelMode("NONOTICE", 'T'));
}
public: