diff options
| author | 2019-06-08 10:59:14 +0100 | |
|---|---|---|
| committer | 2019-06-08 10:59:52 +0100 | |
| commit | d4ba98307f98a083fba7c67738b445c21141ebd2 (patch) | |
| tree | 144ab03a87bba69a83099b0144b954c29e6afdcc /src | |
| parent | Only 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.py | 1 |
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 |
