aboutsummaryrefslogtreecommitdiff
path: root/src/IRCServer.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/IRCServer.py')
-rw-r--r--src/IRCServer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/IRCServer.py b/src/IRCServer.py
index 61f99ef9..7a3aa150 100644
--- a/src/IRCServer.py
+++ b/src/IRCServer.py
@@ -54,6 +54,8 @@ class Server(IRCObject.Object):
self.prefix_modes = collections.OrderedDict(
(("o", "@"), ("v", "+")))
self.channel_modes = [] # type: typing.List[str]
+ self.channel_list_modes = [] # type: typing.List[str]
+ self.channel_paramatered_modes = [] # type: typing.List[str]
self.channel_types = ["#"]
self.case_mapping = "rfc1459"