aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-08 10:59:14 +0100
committerGravatar jesopo2019-06-08 10:59:52 +0100
commitd4ba98307f98a083fba7c67738b445c21141ebd2 (patch)
tree144ab03a87bba69a83099b0144b954c29e6afdcc /src
parentOnly request a CAP once. closes #66 (diff)
signature
We should look at ISUPPORT's STATUSMSG token instead of PREFIX
Diffstat (limited to 'src')
-rw-r--r--src/IRCServer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/IRCServer.py b/src/IRCServer.py
index cd30d1c9..2eea78f4 100644
--- a/src/IRCServer.py
+++ b/src/IRCServer.py
@@ -58,6 +58,7 @@ class Server(IRCObject.Object):
self.channel_types = ["#"]
self.case_mapping = "rfc1459"
+ self.statusmsg = []
self.motd_lines = [] # type: typing.List[str]
self.motd_done = False