aboutsummaryrefslogtreecommitdiff
path: root/src/IRCServer.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-09 18:48:18 +0000
committerGravatar jesopo2019-02-09 18:48:18 +0000
commit84a3bf613501ec88a0be7042e11501b93af2c549 (patch)
treec92fb036f376b59f075c0213d93910e0b8db15bb /src/IRCServer.py
parentMove REGEX_CUTOFF to outs.py (commands) (diff)
signature
Also capture channel setting-related modes (e.g. +f for flood settings)
Diffstat (limited to 'src/IRCServer.py')
-rw-r--r--src/IRCServer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/IRCServer.py b/src/IRCServer.py
index 4c8ffec2..d3ced447 100644
--- a/src/IRCServer.py
+++ b/src/IRCServer.py
@@ -56,6 +56,7 @@ class Server(IRCObject.Object):
(("o", "@"), ("v", "+")))
self.channel_modes = [] # type: typing.List[str]
self.channel_list_modes = [] # type: typing.List[str]
+ self.channel_setting_modes = [] # type: typing.List[str]
self.channel_paramatered_modes = [] # type: typing.List[str]
self.channel_types = ["#"]
self.case_mapping = "rfc1459"