aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-09 18:48:18 +0000
committerGravatar jesopo2019-02-09 18:48:18 +0000
commit84a3bf613501ec88a0be7042e11501b93af2c549 (patch)
treec92fb036f376b59f075c0213d93910e0b8db15bb /modules
parentMove REGEX_CUTOFF to outs.py (commands) (diff)
signature
Also capture channel setting-related modes (e.g. +f for flood settings)
Diffstat (limited to 'modules')
-rw-r--r--modules/line_handler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/line_handler.py b/modules/line_handler.py
index 7b16e4ae..e2bbb3f7 100644
--- a/modules/line_handler.py
+++ b/modules/line_handler.py
@@ -107,6 +107,7 @@ class Module(ModuleManager.BaseModule):
modes = isupport["CHANMODES"].split(",", 3)
event["server"].channel_list_modes = list(modes[0])
event["server"].channel_paramatered_modes = list(modes[1])
+ event["server"].channel_setting_modes = list(modes[2])
event["server"].channel_modes = list(modes[3])
if "CHANTYPES" in isupport:
event["server"].channel_types = list(isupport["CHANTYPES"])