Update __init__.py
This commit is contained in:
parent
9940b7aad2
commit
bcf38cb6f8
1 changed files with 2 additions and 0 deletions
|
@ -133,6 +133,8 @@ class IRCSession: # Actual IRC session
|
||||||
cache.append(ParserMessage(content="Server reports name \"" + spaced[6] + "\""))
|
cache.append(ParserMessage(content="Server reports name \"" + spaced[6] + "\""))
|
||||||
elif spaced[1] == "003": # Type 003 (Server was created in...)
|
elif spaced[1] == "003": # Type 003 (Server was created in...)
|
||||||
cache.append(ParserMessage(content="Server reports creation time " + " ".join(spaced[7:])))
|
cache.append(ParserMessage(content="Server reports creation time " + " ".join(spaced[7:])))
|
||||||
|
|
||||||
|
|
||||||
elif spaced[1] == "433": # Type 443 (Nick already in use)
|
elif spaced[1] == "433": # Type 443 (Nick already in use)
|
||||||
cache.append(SystemMessage(content=" ".join(spaced[4:])[1:],user=User(name=spaced[0][1:], system=True), typ="error", mention=True))
|
cache.append(SystemMessage(content=" ".join(spaced[4:])[1:],user=User(name=spaced[0][1:], system=True), typ="error", mention=True))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue