aboutsummaryrefslogtreecommitdiff
path: root/src/IRCServer.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-12-06 08:26:07 +0000
committerGravatar jesopo2018-12-06 08:26:07 +0000
commit809efc6793cfae22dc9302e3e3e3e2b5b7897642 (patch)
tree3da8041b501b617f744c4be0770e5300bf2ed4f1 /src/IRCServer.py
parentComment tls-* keys in bot.conf.example (diff)
signature
Only pop MODE args when we're certain we should (pays more attention to
CHANMODES ISUPPORT)
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"